import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";

const geistSans = Geist({
  variable: "--font-geist-sans",
  subsets: ["latin"],
});

const geistMono = Geist_Mono({
  variable: "--font-geist-mono",
  subsets: ["latin"],
});

export const metadata: Metadata = {
  title: "HackRPI 2026: In the Clouds",
  description: "Rensselaer Polytechnic Institute's 13th Annual Hackathon",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <head>
        <link rel="icon" href="HackRPI_Favicon.png"></link>
      </head>
      <body
        className={`${geistSans.variable} ${geistMono.variable} bg-gBlack antialiased`}
      >
        {children}
      </body>
    </html>
  );
}
