Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${roboto.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +81,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -89,11 +89,11 @@ export default function HomePage() {
|
||||
title: "Damenhaarschnitt",
|
||||
description: "Professionelle Haarschnitte speziell auf Ihre Gesichtsform und Ihren Haartyp abgestimmt.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-getting-treatment-hairdresser-shop_23-2149230929.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-getting-treatment-hairdresser-shop_23-2149230929.jpg?_wi=1",
|
||||
imageAlt: "woman getting stylish haircut at salon",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-getting-treatment-hairdresser-shop_23-2149229778.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-getting-treatment-hairdresser-shop_23-2149229778.jpg?_wi=1",
|
||||
imageAlt: "professional hair styling with tools",
|
||||
},
|
||||
},
|
||||
@@ -102,11 +102,11 @@ export default function HomePage() {
|
||||
title: "Herrenhaarschnitt",
|
||||
description: "Klassische und moderne Herrenhaarschnitte mit professionellem Finish und Beratung.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-getting-fresh-haircut_23-2148242775.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-getting-fresh-haircut_23-2148242775.jpg?_wi=1",
|
||||
imageAlt: "professional men haircut at barbershop",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-client-getting-her-hair-done-hairdresser_23-2150771236.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-client-getting-her-hair-done-hairdresser_23-2150771236.jpg?_wi=1",
|
||||
imageAlt: "professional hair coloring treatment salon",
|
||||
},
|
||||
},
|
||||
@@ -115,11 +115,11 @@ export default function HomePage() {
|
||||
title: "Haarfarbe & Strähnen",
|
||||
description: "Hochwertige Haarfarbtechniken und Strähnen für einen frischen, leuchtenden Look.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-client-getting-her-hair-done-hairdresser_23-2150771236.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-client-getting-her-hair-done-hairdresser_23-2150771236.jpg?_wi=2",
|
||||
imageAlt: "professional hair coloring treatment salon",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-darkhaired-tanned-young-woman-silk-striped-shirt-touches-hair-looks-into_197531-33644.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-darkhaired-tanned-young-woman-silk-striped-shirt-touches-hair-looks-into_197531-33644.jpg?_wi=1",
|
||||
imageAlt: "professional hair color highlight",
|
||||
},
|
||||
},
|
||||
|
||||
@@ -55,11 +55,11 @@ export default function ServicesPage() {
|
||||
"Professionelle Schnitte für jeden Haartyp und Wunsch. Persönliche Beratung für den perfekten Style.",
|
||||
phoneOne: {
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/woman-getting-treatment-hairdresser-shop_23-2149230929.jpg",
|
||||
"http://img.b2bpic.net/free-photo/woman-getting-treatment-hairdresser-shop_23-2149230929.jpg?_wi=2",
|
||||
},
|
||||
phoneTwo: {
|
||||
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=1",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -69,11 +69,11 @@ export default function ServicesPage() {
|
||||
"Von klassisch bis modern – professionelle Herrenhaarschnitte mit expertem Finish.",
|
||||
phoneOne: {
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/man-getting-fresh-haircut_23-2148242775.jpg",
|
||||
"http://img.b2bpic.net/free-photo/man-getting-fresh-haircut_23-2148242775.jpg?_wi=2",
|
||||
},
|
||||
phoneTwo: {
|
||||
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=1",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -83,11 +83,11 @@ export default function ServicesPage() {
|
||||
"Geduldige und professionelle Kinderhaare, um die kleinsten Gäste glücklich zu machen.",
|
||||
phoneOne: {
|
||||
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=2",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/woman-getting-treatment-hairdresser-shop_23-2149229778.jpg",
|
||||
"http://img.b2bpic.net/free-photo/woman-getting-treatment-hairdresser-shop_23-2149229778.jpg?_wi=2",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -97,11 +97,11 @@ export default function ServicesPage() {
|
||||
"Wunderschöne Frisuren für besondere Anlässe und tägliches Styling.",
|
||||
phoneOne: {
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/woman-getting-treatment-hairdresser-shop_23-2149229778.jpg",
|
||||
"http://img.b2bpic.net/free-photo/woman-getting-treatment-hairdresser-shop_23-2149229778.jpg?_wi=3",
|
||||
},
|
||||
phoneTwo: {
|
||||
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=2",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -111,11 +111,11 @@ export default function ServicesPage() {
|
||||
"Hochwertige Haarfarbtechniken für einen strahlenden, gesunden Look.",
|
||||
phoneOne: {
|
||||
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=3",
|
||||
},
|
||||
phoneTwo: {
|
||||
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=3",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -125,11 +125,11 @@ export default function ServicesPage() {
|
||||
"Moderne Strähnen- und Highlighttechniken für Dimension und Glanz.",
|
||||
phoneOne: {
|
||||
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=3",
|
||||
},
|
||||
phoneTwo: {
|
||||
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=4",
|
||||
},
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user