Update src/app/layout.tsx

This commit is contained in:
2026-03-10 06:09:07 +00:00
parent 5a5056cd37
commit d03c0f324e

View File

@@ -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 (
<html lang="de">
<body className={inter.className}>{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `