Merge version_1 into main #1

Merged
bender merged 3 commits from version_1 into main 2026-03-19 16:09:08 +00:00
3 changed files with 48 additions and 15 deletions

View File

@@ -73,7 +73,7 @@ export default function AboutPage() {
title: "Onze Missie",
description: "We geloven dat iedereen het recht heeft om zich verwend en schoon te voelen. Wij stellen ons tot doel om dit dagelijks waar te maken voor onze klanten.",
tag: "Missie",
imageSrc: "http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg?_wi=1",
imageAlt: "Rustig salon interieur met premium inrichting",
},
{
@@ -81,7 +81,7 @@ export default function AboutPage() {
title: "Onze Waarden",
description: "Kwaliteit, integriteit en klantgerichtheid zijn de pijlers van ons bedrijf. We gebruiken alleen de beste producten en technieken.",
tag: "Waarden",
imageSrc: "http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg?_wi=2",
imageAlt: "Professional beauty salon met luxe ambiance",
},
]}

View File

@@ -91,7 +91,7 @@ export default function ContactPage() {
rows: 5,
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg"
imageSrc="http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg?_wi=3"
imageAlt="Luxe beautysalon contactlocatie"
mediaAnimation="slide-up"
mediaPosition="right"
@@ -112,7 +112,7 @@ export default function ContactPage() {
description: "Hoofdstraat 123\n2000 Brussel\nBelgië",
tag: "Locatie",
imageSrc:
"http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg",
"http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg?_wi=4",
imageAlt: "Serenity Salon ingang en voorgevel",
},
{
@@ -122,7 +122,7 @@ export default function ContactPage() {
"Maandag - Vrijdag: 09:00 - 18:00\nZaterdag: 10:00 - 17:00\nZondag: Gesloten",
tag: "Uren",
imageSrc:
"http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg",
"http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg?_wi=5",
imageAlt: "Serenity Salon ingang nachtfoto",
},
{
@@ -132,7 +132,7 @@ export default function ContactPage() {
"Tel: +32 2 555 1234\nEmail: info@serenitysalon.be\nWhatsApp: +32 472 55 1234",
tag: "Bereik",
imageSrc:
"http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg",
"http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg?_wi=6",
imageAlt: "Serenity Salon receptie contactpunt",
},
]}

View File

@@ -1,29 +1,60 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } 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 { Manrope } from "next/font/google";
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 manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Serenity Salon | Luxe Beauty & Spa Behandelingen",
description: "Ontdek Serenity Salon: professionele beauty behandelingen, massages en spa services. Boek nu je afspraak voor absolute verwenning.",
keywords: "beauty salon, spa, massage, gezichtsbehandeling, manicure, pedicure, luxe salon",
metadataBase: new URL("https://serenitysalon.be"),
alternates: {
canonical: "https://serenitysalon.be",
},
openGraph: {
title: "Serenity Salon - Jouw Moment van Rust",
description: "Welkom in Serenity Salon, waar luxe schoonheidsbehandelingen samenkomen met absolute ontspanning.",
url: "https://serenitysalon.be",
siteName: "Serenity Salon",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Serenity Salon | Luxe Beauty Services",
description: "Professionele schoonheidsbehandelingen en spa services voor volledige verwenning.",
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -32,7 +63,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -44,4 +77,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}