diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d5e3bce..b431e5a 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -109,21 +109,21 @@ export default function AboutPage() { id: 1, title: "Handwerkskunst", description: "Jeder Schnitt wird mit Präzision und Liebe zum Detail ausgeführt. Wir nutzen hochwertige Werkzeuge und Produkte.", - imageSrc: "http://img.b2bpic.net/free-photo/blurred-hairdresser-cutting-hair-male-client_23-2147778768.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/blurred-hairdresser-cutting-hair-male-client_23-2147778768.jpg?_wi=2", imageAlt: "Handwerkskunst", }, { id: 2, title: "Kundenerlebnis", description: "Wir schaffen eine entspannende und einladende Atmosphäre, in der sich jeder Kunde wohlfühlt und verstanden wird.", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-getting-groomed_23-2150668472.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-getting-groomed_23-2150668472.jpg?_wi=2", imageAlt: "Kundenerlebnis", }, { id: 3, title: "Innovation", description: "Wir bleiben am Puls der Zeit und integrieren die neuesten Techniken und Trends in unsere Services.", - imageSrc: "http://img.b2bpic.net/free-photo/blonde-girl-getting-her-hair-washed_23-2148108811.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/blonde-girl-getting-her-hair-washed_23-2148108811.jpg?_wi=2", imageAlt: "Innovation", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5776a41..b51ecf4 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,33 @@ const roboto = Roboto({ weight: ["100", "300", "400", "500", "700", "900"] }); +export const metadata: Metadata = { + title: "Profi Stil – Premium Friseursalon Worpswede", + description: "Moderner Friseursalon in Worpswede mit Premium Haarschnitten, Bartpflege und professioneller Beratung.", + keywords: "Friseursalon Worpswede, Barbershop, Haarschnitt, Bartpflege, Premium Styling", + metadataBase: new URL("https://profi-stil.de"), + alternates: { + canonical: "https://profi-stil.de" + }, + openGraph: { + title: "Profi Stil – Premium Friseursalon Worpswede", + description: "Erleben Sie professionelles Handwerk und modernen Style.", + url: "https://profi-stil.de", + siteName: "Profi Stil", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/front-view-barbershop-concept_23-2148506186.jpg", + alt: "Profi Stil Friseursalon" + } + ] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +59,9 @@ export default function RootLayout({ return ( - + {children}