HackNC 2026
-In-Progress...
-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 ( -In-Progress...
-+ HackNC is a weekend for students of all skill levels to broaden their + talents. Your challenge is to make an awesome project in just 24 hours. + You will have access to hands-on tech workshops, sponsor networking, and + exciting talks about what's happening right now in CS and tech — + not to mention all of the free food, shirts, stickers, and swag!
++ You don't need to be a senior computer science student with four internships + to show up. HackNC is explicitly built for people who are still figuring + it out. The best projects usually come from people who had no idea what + they were doing on Friday night. +
++ An annual hackathon at UNC Chapel Hill. We bring together + students from across the Southeast to build, hack, and deploy in + one weekend. All skill levels welcome, first-timers especially! +
++ 2026 +
+ + {meta.map(({ label, value }) => ( ++ {label} +
++ {value} +
++ LET US KNOW YOU'RE INTERESTED +
++ Registration isn't open yet, but fill out our interest form and + we'll reach out as soon as applications go live. Takes less than + a minute. +
+