import { Inter } from "next/font/google";
const inter = Inter({ subsets: ["latin"] });
import "../globals.css";

export const metadata = {
  title: 'Next.js',
  description: 'Generated by Next.js',
}

export default function RootLayout({
  children,
}: {
  children: React.ReactNode
}) {
  return (
    <body className={inter.className + ' dark'}>
      {children}
    </body>
  )
}
