diff --git a/app/components/footer.tsx b/app/components/footer.tsx new file mode 100644 index 0000000..1c464ba --- /dev/null +++ b/app/components/footer.tsx @@ -0,0 +1,32 @@ +import { + Box, + Button, + Image, + Grid, + Heading, + Text, + } from 'theme-ui'; + + const footer = ()=> { + return ( + + ) +} +export default footer; \ No newline at end of file diff --git a/app/globals.css b/app/globals.css index abbab8c..f2b01ed 100644 --- a/app/globals.css +++ b/app/globals.css @@ -15,7 +15,7 @@ body { color: #FFFFFF; background: var(linear-gradient(to bottom right, rgba(70, 181, 255, 1), rgba(227, 244, 255, 1))); font-family: Arial, Helvetica, sans-serif; - height: 100%; + height: 100vh; margin: 0; background-repeat: no-repeat; background-attachment: fixed; diff --git a/app/layout.tsx b/app/layout.tsx index 34923c3..2d58199 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,6 +1,15 @@ import type { Metadata } from "next"; import localFont from "next/font/local"; import "./globals.css"; +import { + Box, + Button, + Container, + Image, + Grid, + Heading, + Text, +} from 'theme-ui'; const geistSans = localFont({ src: "./fonts/GeistVF.woff", @@ -19,7 +28,7 @@ const inter = localFont({ }) export const metadata: Metadata = { - title: "Create Next App", + title: "Hacky Holidays", description: "Generated by create next app", }; diff --git a/app/page.tsx b/app/page.tsx index 55d2610..cf3f859 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -11,11 +11,14 @@ import { useEffect } from 'react'; import { Box, Button, + Container, Image, Grid, Heading, Text, } from 'theme-ui'; +import Footer from './components/footer'; + import dynamic from 'next/dynamic'; const Top = dynamic(() => import('./components/top'), { ssr: false }); import FAQcard from './components/FAQcard'; @@ -38,10 +41,39 @@ export default function Home() { } }, []); return ( - + Submissions will be peer-reviewed in the categories of Best Creative Design, Most Technically Impressive, and Spookiest Halloween Theme — no extensive experience required. The top voted 10% of entries per catagory will receive a $100 grant to manufacture their PCB and purchase additional hardware or electronics. Get inspired by Halloween themes such as costumes and animatronic props, and incorporate them into your design. - + - - - Made with ❤️ by @bright li & @Scott - + + + ); }