diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..e2c14ba 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ 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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Lato } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const lato = Lato({ variable: "--font-lato", @@ -20,6 +24,39 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "MVZ Hamburg Eilbek | Schön Klinik", + description: "Medizinisches Versorgungszentrum in Hamburg Eilbek. Spezialisierte Fachpraxen für Innere Medizin, Orthopädie und Chirurgie. Jetzt Termin vereinbaren.", + keywords: "MVZ Hamburg, Medizinisches Versorgungszentrum, Internist Hamburg, Orthopäde Hamburg, Chirurg Hamburg, Schön Klinik", + metadataBase: new URL("https://www.schoen-klinik-hamburg-mvz.de"), + alternates: { + canonical: "https://www.schoen-klinik-hamburg-mvz.de", + }, + openGraph: { + title: "MVZ Hamburg Eilbek | Schön Klinik - Ihre Gesundheit in besten Händen", + description: "Umfassende medizinische Versorgung durch spezialisierte Fachleute. Innere Medizin, Orthopädie und Chirurgie in Hamburg Eilbek.", + url: "https://www.schoen-klinik-hamburg-mvz.de", + siteName: "Schön Klinik MVZ Hamburg", + type: "website", + images: [ + { + url: "https://www.schoen-klinik-hamburg-mvz.de/og-image.jpg", + alt: "Schön Klinik MVZ Hamburg Eilbek", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "MVZ Hamburg Eilbek | Schön Klinik", + description: "Spezialisierte medizinische Versorgung in Hamburg", + images: ["https://www.schoen-klinik-hamburg-mvz.de/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}