diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 271ec6d..7bae68e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Physio Shala | Physiotherapie Konstanz – Schmerztherapie & Rehabilitation", description: "Professionelle Physiotherapie in Konstanz. Spezialisiert auf Schmerztherapie, Rehabilitation und Sportphysiotherapie. Moderne Techniken, persönliche Betreuung. Termin online anfragen.", keywords: "Physiotherapie Konstanz, Schmerztherapie, Rehabilitation, Sportphysiotherapie, Hausbesuche, Mobilitätstherapie", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Physio Shala | Physiotherapie Konstanz", description: "Schmerzfrei bewegen. Wieder aktiv leben. Professionelle Physiotherapie mit persönlicher Betreuung.", type: "website", siteName: "Physio Shala", images: [ - { - url: "http://img.b2bpic.net/free-photo/high-angle-woman-massaging-man_23-2149406802.jpg", alt: "Physio Shala – Physiotherapie für Ihre Gesundheit"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Physio Shala | Physiotherapie Konstanz", description: "Schmerzfrei bewegen. Wieder aktiv leben mit modernen Therapien.", images: ["http://img.b2bpic.net/free-photo/high-angle-woman-massaging-man_23-2149406802.jpg"], - }, -}; + title: "Physio Shala - Physiotherapie Konstanz", description: "Professionelle Physiotherapie in Konstanz mit modernen Therapien und persönlicher Betreuung."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -