diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c4b2e9e..0ca780f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1431 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Praxis Kosiol & Kollegen - Ihr Arzt in Siegen", - description: "Vertrauensvolle medizinische Versorgung in Siegen. Erfahrene Ärzte, moderne Diagnostik und empathische Patientenbetreuung. Buchen Sie Ihren Termin online oder rufen Sie an.", - keywords: "Arzt Siegen, Zahnarzt, Innere Medizin, Allgemeinmedizin, Praxis Kosiol, lokale Ärzte, Termin buchen", - openGraph: { - title: "Praxis Kosiol & Kollegen - Medizinische Praxis Siegen", - description: "Vertrauensvolle Ärzte in Siegen mit 20+ Jahren Erfahrung. 4.9/5 Bewertung. Jetzt Termin buchen.", - type: "website", - siteName: "Praxis Kosiol & Kollegen", - images: [ - { - url: "http://img.b2bpic.net/free-photo/young-couple-receiving-prescription-medicine-from-female-doctor-consultations-clinic-focus-is-doctor_637285-1154.jpg", - alt: "Ärzte der Praxis Kosiol & Kollegen", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Praxis Kosiol & Kollegen - Ihr Arzt in Siegen", - description: "Medizinische Versorgung mit Empathie und Expertise.", - images: [ - "http://img.b2bpic.net/free-photo/young-couple-receiving-prescription-medicine-from-female-doctor-consultations-clinic-focus-is-doctor_637285-1154.jpg", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Praxis Kosiol & Kollegen", description: "Vertrauensvolle medizinische Versorgung in Siegen"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -