import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Sucker?", description: "Walk away if you don't know what this is for, bud.", icons: { icon: [ { url: '/favicon.ico' }, { url: '/favicon-16x16.png', sizes: '16x16', type: 'image/png' }, { url: '/favicon-32x32.png', sizes: '32x32', type: 'image/png' }, ], apple: [ { url: '/apple-touch-icon.png' } ], other: [ { url: '/android-chrome-192x192.png', sizes: '192x192', type: 'image/png' }, { url: '/android-chrome-512x512.png', sizes: '512x512', type: 'image/png' }, ], }, }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }