import { Inter } from "next/font/google"; import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata = { title: "fascinated.cc", description: "I'm a 20-year-old software engineer from the UK", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }