import type { Metadata } from "next"; import { Inter, Newsreader } from "next/font/google"; import "./globals.css"; const inter = Inter({ subsets: ["latin"], variable: "--font-inter" }); const newsreader = Newsreader({ subsets: ["latin"], variable: "--font-newsreader", style: "italic", display: "swap", }); export const metadata: Metadata = { title: "Gatekeeper | Access Control", description: "Mintel Infrastructure Protection", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }