import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import 'leaflet/dist/leaflet.css'; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "LocalToast - Find & Rate the Best Toast in Town! 🍞", description: "Discover restaurants serving amazing toast near you. Rate and review your toast experiences!", icons: { icon: "data:image/svg+xml,🍞", } }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }