From 973fcdb9d360c8dbea01c7a83430dd6c2ad6f2d6 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 09:35:27 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1438 +------------------------------------------- 1 file changed, 12 insertions(+), 1426 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5126642..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1440 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Source_Sans_3 } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Zahnarzt Dessau-Roßlau - Moderne Zahnarztpraxis Thust & Kröning", - description: "Zahnarztpraxis Oliver Thust und Isabel Kröning in Dessau-Roßlau. Moderne zahnmedizinische Behandlung für die ganze Familie mit persönlicher Betreuung.", - keywords: "Zahnarzt Dessau-Roßlau, Zahnarztpraxis Dessau, Zahnarzt Dessau Innenstadt, Zahnarzt Kurt-Weill-Straße, Zahnbehandlung Dessau, Kinderzahnheilkunde, Zahnarzt für Angstpatienten", - metadataBase: new URL("https://zahnarztpraxis-thust-kroening.de"), - alternates: { - canonical: "https://zahnarztpraxis-thust-kroening.de", - }, - openGraph: { - title: "Zahnarzt Dessau-Roßlau | Zahnarztpraxis Thust & Kröning", - description: "Moderne zahnmedizinische Betreuung für die ganze Familie in Dessau-Roßlau. Freundliches Team, neueste Technik.", - url: "https://zahnarztpraxis-thust-kroening.de", - siteName: "Zahnarztpraxis Thust & Kröning", - images: [ - { - url: "http://img.b2bpic.net/free-photo/abstract-blur-hotel-lobby-interior_74190-4868.jpg", - alt: "Zahnarztpraxis Thust & Kröning Dessau-Roßlau", - }, - ], - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Zahnarzt Dessau-Roßlau | Praxis Thust & Kröning", - description: "Ihre Zahnarztpraxis mit modernem Equipment und freundlichem Team in Dessau-Roßlau.", - images: ["http://img.b2bpic.net/free-photo/abstract-blur-hotel-lobby-interior_74190-4868.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -