import type { Metadata, Viewport } from "next"; import { Inter } from "next/font/google"; import PlausibleProvider from "next-plausible"; import "./globals.css"; import { cn } from "@/lib/utils"; const inter = Inter({ subsets: ["latin"], variable: "--font-sans" }); export const viewport: Viewport = { colorScheme: "dark", }; export const metadata: Metadata = { title: "Bangers and Mash GBG", description: "Sign up to the Bangers and Mash GBG guest list", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }