diff --git a/pages/index.tsx b/pages/index.tsx index 495e7fa..e41284b 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,13 +1,25 @@ +import type { NextPage } from "next"; +import Head from "next/head"; import { Flex } from "@chakra-ui/react"; import Todooo from "../src/components/Todooo"; import Background from "../src/components/Background"; -const IndexPage = () => { +const IndexPage: NextPage = () => { return ( - - - - + <> + + Todooo + + + + + + + + ); }; diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..057537d Binary files /dev/null and b/public/favicon.ico differ