import "~/styles/globals.css"; import { GeistSans } from "geist/font/sans"; import { type Metadata } from "next"; export const metadata: Metadata = { title: "Is Madeline the Cutest?", description: "Answering the easiest question in the world!", icons: [{ rel: "icon", url: "/favicon.png" }], }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( {children} ); }