import { Inter } from "next/font/google"; import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata = { title: "Example Site", description: "Template by https://git.fascinated.cc/Fascinated/nextjs-13-template-with-tailwindcss", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }