This commit is contained in:
Lucid Kobold
2021-11-13 17:11:29 -06:00
commit 4ec4be5a12
23 changed files with 8788 additions and 0 deletions

14
pages/index.tsx Normal file
View File

@@ -0,0 +1,14 @@
import React from "react";
import { Box, Heading } from "@chakra-ui/react";
const IndexPage = (): JSX.Element => {
return (
<Box textAlign="center" w="100%" h="auto" py="10vh">
<Heading as="h1" size="2xl">
Hello World
</Heading>
</Box>
);
};
export default IndexPage;