import "reflect-metadata"; import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; const inter = Inter({ subsets: ['latin'], variable: '--font-inter', }); export const metadata: Metadata = { title: "Joe Monk", description: "A portfolio page showing some of the things I've done", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>): React.JSX.Element { return ( // Use suppress hydration warnings to add the dark theme class on client {children} ); }