File size: 715 Bytes
654b283 24a593e 654b283 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 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>
);
}
|