diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5e4bf36..81d5421 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,17 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -const inter = Inter({ subsets: ["latin"] }); +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "Böhmer Automobile – Gebrauchtwagen in Salzgitter", description: "Hochwertige Gebrauchtwagen mit transparenter Beratung und schneller Abwicklung in Salzgitter. Vertrauenswürdiger Autohändler mit 4.7★ Bewertung."}; + title: "Böhmer Automobile – Gebrauchtwagen Salzgitter", description: "Hochwertige Gebrauchtwagen in Salzgitter – Geprüft, Fair & Sofort Verfügbar. Transparente Beratung und schnelle Abwicklung."}; export default function RootLayout({ children, @@ -13,8 +19,10 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - {children} + + + {children} +