diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index e548cbb..9ae4866 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -53,21 +53,21 @@ export default function GalleryPage() { name: "Moderner Frauenhaarschnitt", price: "Damenhaarschnitt", imageSrc: - "http://img.b2bpic.net/free-photo/beautiful-young-blonde-woman-elegant-black-silk-cocktail-dress-with-cutout-is-posing-camera-three-quarter-length-studio-shot-red-background_639032-789.jpg", + "http://img.b2bpic.net/free-photo/beautiful-young-blonde-woman-elegant-black-silk-cocktail-dress-with-cutout-is-posing-camera-three-quarter-length-studio-shot-red-background_639032-789.jpg?_wi=4", }, { id: "2", name: "Elegante Haarfarbe", price: "Coloration", imageSrc: - "http://img.b2bpic.net/free-photo/closeup-portrait-darkhaired-tanned-young-woman-silk-striped-shirt-touches-hair-looks-into_197531-33644.jpg", + "http://img.b2bpic.net/free-photo/closeup-portrait-darkhaired-tanned-young-woman-silk-striped-shirt-touches-hair-looks-into_197531-33644.jpg?_wi=4", }, { id: "3", name: "Trendiger Kurzhaarschnitt", price: "Damenhaarschnitt", imageSrc: - "http://img.b2bpic.net/free-photo/attractive-cute-young-woman-with-amazing-artistic-make-up-stylish-haircut-posing-wearing-black-blouse-with-flares-closing-eyes-moving-hand-near-face-as-if-dancing-calm-music_343059-4348.jpg", + "http://img.b2bpic.net/free-photo/attractive-cute-young-woman-with-amazing-artistic-make-up-stylish-haircut-posing-wearing-black-blouse-with-flares-closing-eyes-moving-hand-near-face-as-if-dancing-calm-music_343059-4348.jpg?_wi=2", }, { id: "4", @@ -88,7 +88,7 @@ export default function GalleryPage() { name: "Farbglanz & Highlights", price: "Spezialbehandlung", imageSrc: - "http://img.b2bpic.net/free-photo/female-client-getting-her-hair-done-hairdresser_23-2150771236.jpg", + "http://img.b2bpic.net/free-photo/female-client-getting-her-hair-done-hairdresser_23-2150771236.jpg?_wi=5", }, ]} gridVariant="bento-grid" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 82b392d..27e2017 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 { Roboto } 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 { Roboto } 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 roboto = Roboto({ variable: "--font-roboto", @@ -20,6 +24,41 @@ const roboto = Roboto({ weight: ["100", "300", "400", "500", "700", "900"], }); +export const metadata: Metadata = { + title: "Friseur Alfeld (Leine) - Haarzeit Mira Wiese", + description: "Haarzeit Mira Wiese ist Ihr professioneller Friseur in Alfeld. Hochwertige Haarschnitte, Färbungen und Styling mit persönlicher Beratung. Jetzt Termin vereinbaren!", + keywords: "Friseur Alfeld, Friseur Alfeld Leine, Damenhaarschnitt, Herrenhaarschnitt, Haarfarbe, Styling, Friseursalon", + metadataBase: new URL("https://haarzeit-mira-wiese.de"), + alternates: { + canonical: "https://haarzeit-mira-wiese.de", + }, + openGraph: { + title: "Friseur Alfeld - Haarzeit Mira Wiese", + description: "Besuchen Sie Haarzeit Mira Wiese – Ihren modernen Friseursalon in Alfeld (Leine). Professionelle Services, kompetentes Team und wunderschöne Ergebnisse.", + url: "https://haarzeit-mira-wiese.de", + siteName: "Haarzeit Mira Wiese", + images: [ + { + url: "http://img.b2bpic.net/free-photo/empty-therapist-office-with-modern-furniture-decorations_482257-108008.jpg", + alt: "Haarzeit Mira Wiese Friseursalon", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Friseur Alfeld - Haarzeit Mira Wiese", + description: "Ihr professioneller Friseursalon in Alfeld (Leine). Hochwertige Frisuren und persönliche Beratung.", + images: [ + "http://img.b2bpic.net/free-photo/empty-therapist-office-with-modern-furniture-decorations_482257-108008.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +67,9 @@ export default function RootLayout({ return ( - + {children}