| import type { Metadata } from "next"; | |
| import { IBM_Plex_Mono } from "next/font/google"; | |
| import "./globals.css"; | |
| const ibmPlexMono = IBM_Plex_Mono({ | |
| display: "swap", | |
| subsets: ["latin"], | |
| variable: "--font-ibm-plex-mono", | |
| weight: ["400", "500", "600", "700"], | |
| }); | |
| export const metadata: Metadata = { | |
| title: "Humanity's Last Hackathon | Signup", | |
| description: | |
| "Signup page for Humanity's Last Hackathon, a Mac Metal kernel competition built around Codex from OpenAI and Hugging Face.", | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: Readonly<{ | |
| children: React.ReactNode; | |
| }>) { | |
| return ( | |
| <html lang="en" className={ibmPlexMono.variable}> | |
| <body>{children}</body> | |
| </html> | |
| ); | |
| } | |