import React from "react"; import { Stack, Text, Image, Button, useDisclosure, Flex, } from "@chakra-ui/react"; import { useRouter } from "next/router"; import { Layout } from "../../src/components/Layout"; import { Header } from "../../src/components/Header"; import { ProfileButton } from "../../src/components/ProfileButton"; import { route, routes } from "../../src/routes"; const Home = () => { const router = useRouter(); const sidebar = useDisclosure(); return ( // @ts-ignore
strata.im splash image Welcome to strata.im The first gated group chat built on Solana Just connect your wallet, and start chatting! All of your messages run through the Solana Blockchain and are fully encrypted via Lit Protocol. With strata.im, you own your chat experience. Create Profile ); }; export default Home;