diff --git a/app/globals.css b/app/globals.css index a2dc41e..ca41933 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,26 +1,20 @@ @import "tailwindcss"; :root { - --background: #ffffff; - --foreground: #171717; + --background: #f5f0e8; + --foreground: #111111; + --blue: #4B9CD3; } @theme inline { --color-background: var(--background); --color-foreground: var(--foreground); - --font-sans: var(--font-geist-sans); - --font-mono: var(--font-geist-mono); -} - -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } + --font-display: var(--font-display); + --font-mono: var(--font-mono); } body { background: var(--background); color: var(--foreground); - font-family: Arial, Helvetica, sans-serif; + font-family: Georgia, "Times New Roman", serif; } diff --git a/app/layout.tsx b/app/layout.tsx index 7bc64fe..fa7e2fa 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,14 +1,16 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { Anton, IBM_Plex_Mono } from "next/font/google"; import "./globals.css"; -const geistSans = Geist({ - variable: "--font-geist-sans", +const anton = Anton({ + weight: "400", + variable: "--font-display", subsets: ["latin"], }); -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", +const mono = IBM_Plex_Mono({ + weight: ["400", "500"], + variable: "--font-mono", subsets: ["latin"], }); @@ -23,10 +25,7 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - + {children} ); diff --git a/app/page.tsx b/app/page.tsx index 4d20282..023f394 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,8 +1,21 @@ +import About from "@/components/About"; +import Footer from "@/components/Footer"; +import Hero from "@/components/Hero"; +import HostInterest from "@/components/HostInterest"; +import MLHBadge from "@/components/MLHBadge"; +import Nav from "@/components/Nav"; + export default function Home() { return ( -
-

HackNC 2026

-

In-Progress...

-
+ <> + +