From f3201f7f4aecc5134341f761c0167e13bdade42d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 13:50:49 +0000 Subject: [PATCH 1/5] Update src/app/bewertungen/page.tsx --- src/app/bewertungen/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/bewertungen/page.tsx b/src/app/bewertungen/page.tsx index a218b5f..68dc9b7 100644 --- a/src/app/bewertungen/page.tsx +++ b/src/app/bewertungen/page.tsx @@ -80,42 +80,42 @@ export default function ReviewsPage() { id: "1", name: "Sarah Schmidt", imageSrc: - "http://img.b2bpic.net/free-photo/business-woman-banner-concept-with-copy-space_23-2149601533.jpg", + "http://img.b2bpic.net/free-photo/business-woman-banner-concept-with-copy-space_23-2149601533.jpg?_wi=2", imageAlt: "Sarah Schmidt", }, { id: "2", name: "Anna Weber", imageSrc: - "http://img.b2bpic.net/free-photo/happy-smiling-attractive-model-plays-with-small-cute-straw-hat-isolated-white_633478-731.jpg", + "http://img.b2bpic.net/free-photo/happy-smiling-attractive-model-plays-with-small-cute-straw-hat-isolated-white_633478-731.jpg?_wi=2", imageAlt: "Anna Weber", }, { id: "3", name: "Karin Müller", imageSrc: - "http://img.b2bpic.net/free-photo/close-up-good-looking-smiling-friendly-female-trainee-ready-tackle-assignments-smiling-broadly-feeling-lucky-day-work-self-assured-encouraged-achieve-success-goal-white-wall_176420-35567.jpg", + "http://img.b2bpic.net/free-photo/close-up-good-looking-smiling-friendly-female-trainee-ready-tackle-assignments-smiling-broadly-feeling-lucky-day-work-self-assured-encouraged-achieve-success-goal-white-wall_176420-35567.jpg?_wi=2", imageAlt: "Karin Müller", }, { id: "4", name: "Petra Jung", imageSrc: - "http://img.b2bpic.net/free-photo/portrait-young-successful-businesswoman-suit-cross-arms-chest-smile-look-confident_1258-194088.jpg", + "http://img.b2bpic.net/free-photo/portrait-young-successful-businesswoman-suit-cross-arms-chest-smile-look-confident_1258-194088.jpg?_wi=2", imageAlt: "Petra Jung", }, { id: "5", name: "Julia Hoffmann", imageSrc: - "http://img.b2bpic.net/free-photo/portrait-sensual-blond-female-black-dress_613910-14376.jpg", + "http://img.b2bpic.net/free-photo/portrait-sensual-blond-female-black-dress_613910-14376.jpg?_wi=2", imageAlt: "Julia Hoffmann", }, { id: "6", name: "Claudia Fischer", imageSrc: - "http://img.b2bpic.net/free-photo/portrait-beautiful-young-woman-against-black-background-looking-camera_23-2148229337.jpg", + "http://img.b2bpic.net/free-photo/portrait-beautiful-young-woman-against-black-background-looking-camera_23-2148229337.jpg?_wi=2", imageAlt: "Claudia Fischer", }, ]} -- 2.49.1 From ca9a686edf081b4153605d74a186f831f0de0312 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 13:50:51 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fa6ab..e114fa5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { DM_Sans } 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 { DM_Sans } 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Boutique NaNu Dormagen – Damenmode & persönliche Beratung", + description: "Entdecken Sie stilvolle Damenmode und persönliche Beratung bei Cornelia Freibeuter Boutique NaNu in Dormagen. 5-Sterne Bewertungen, professionelle Änderungen.", + keywords: "Boutique Dormagen, Damenmode Dormagen, Modegeschäft Dormagen, Kleidung Boutique Dormagen, Änderungsschneiderei Dormagen, persönliche Beratung Mode", + metadataBase: new URL("https://nanu-boutique-dormagen.de/"), + alternates: { + canonical: "https://nanu-boutique-dormagen.de/" + }, + openGraph: { + title: "Boutique NaNu Dormagen – Mode mit persönlicher Beratung", + description: "Stilvolle Damenmode, persönliche Beratung und professionelle Änderungen in Dormagen.", + url: "https://nanu-boutique-dormagen.de/", + siteName: "NaNu Boutique Dormagen", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/interior-shop-blur_23-2147652280.jpg", + alt: "Boutique NaNu Innenansicht" + } + ] + }, + twitter: { + card: "summary_large_image", + title: "Boutique NaNu Dormagen – Mode mit persönlicher Beratung", + description: "Stilvolle Damenmode und persönliche Beratung in Dormagen.", + images: ["http://img.b2bpic.net/free-photo/interior-shop-blur_23-2147652280.jpg"] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}