| 1 |
import type { Metadata } from "next"; |
| 2 |
import { Inter } from "next/font/google"; |
| 3 |
import "./globals.css"; |
| 4 |
import 'leaflet/dist/leaflet.css'; |
| 5 |
|
| 6 |
const inter = Inter({ subsets: ["latin"] }); |
| 7 |
|
| 8 |
export const metadata: Metadata = { |
| 9 |
title: "LocalToast - Find & Rate the Best Toast in Town! 🍞", |
| 10 |
description: "Discover restaurants serving amazing toast near you. Rate and review your toast experiences!", |
| 11 |
icons: { |
| 12 |
icon: "data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🍞</text></svg>", |
| 13 |
} |
| 14 |
}; |
| 15 |
|
| 16 |
export default function RootLayout({ |
| 17 |
children, |
| 18 |
}: { |
| 19 |
children: React.ReactNode; |
| 20 |
}) { |
| 21 |
return ( |
| 22 |
<html lang="en"> |
| 23 |
<body className={inter.className}>{children}</body> |
| 24 |
</html> |
| 25 |
); |
| 26 |
} |