import React, { useEffect, useRef } from "react"; import { getLayout } from "../src/layouts/AppLayout"; import { Heading, Text, Stack, Fade, chakra, Accordion, AccordionItem, AccordionButton, AccordionPanel, AccordionIcon, } from "@chakra-ui/react"; import Scrollable from "../src/components/Scrollable"; const Welcome = () => { useEffect(() => { if (typeof window !== "undefined") { document.title = `Welcome to moonstream.to!`; } }, []); const scrollRef = useRef(); return ( {/* */} {true && ( Greetings traveler! We are very excited to see you onboard! Moonstream is a product which helps anyone participate in decentralized finance. Moonstream is meant to give you critical insights you’ll need to succeed in your crypto quest!

How does Moonstream work?

We run nodes {" "} - Get precise and accurate data by querying our database. You’re getting the same data miners have access to and you don’t have to maintain your own node. We crawl data {" "} - We analyze millions of transactions, data, and smart contract code to link them together. We provide data - You can fetch data through our front end or through API. We analyze data - We find the most interesting information and highlight it
)} {/* */}
); }; Welcome.getLayout = getLayout; export default Welcome;