import type { Metadata } from "next";
import { League_Spartan, Nunito_Sans  } from "next/font/google";
import "./globals.css";
import "bootstrap/dist/css/bootstrap.min.css"


const leagueSpartan = League_Spartan({
  subsets: ["latin"],
  variable: "--font-league-spartan",
  weight: ["100","200","300","400","500","600","700","800","900"],
});

const nunitoSans = Nunito_Sans({
  subsets: ["latin"],
  variable: "--font-nunito-sans",
  weight: ["200","300","400","600","700","800","900"], // add weights as needed
});

export const metadata: Metadata = {
  title: "CheckUrIdea",
  description: "Generated by create next app",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <body
        className={`${leagueSpartan.variable}, ${nunitoSans.variable} antialiased`}
      >
        {children}
      </body>
    </html>
  );
}
