diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f05ceb6..b8836af 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,18 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "FahrSchule Pro – Moderne Fahrausbildung", description: "Professionelle Fahrausbildung mit erfahrenen Instruktoren. Flexible Terminplanung, moderne Methoden, 95% Erfolgsquote. Jetzt anmelden!", keywords: "Fahrschule, Fahrunterricht, Führerschein, Fahrausbildung, Fahrschule Deutschland", openGraph: { - title: "FahrSchule Pro – Dein Weg zum Führerschein", description: "Moderne Fahrausbildung mit professionellen Instruktoren und innovativen Lernmethoden.", type: "website", siteName: "FahrSchule Pro"}, - twitter: { - card: "summary_large_image", title: "FahrSchule Pro – Fahrausbildung", description: "Professioneller Fahrunterricht in Deutschland"}, - robots: { - index: true, - follow: true, - }, -}; + title: "FahrSchule Pro", description: "Moderne Fahrausbildung mit erfahrenen Instruktoren"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +