Merge version_1 into main #1
@@ -23,14 +23,14 @@ export default function AboutPage() {
|
||||
id: "nadine",
|
||||
name: "Nadine Coetzee",
|
||||
role: "Blonde Specialist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-make-up-look-using-flat-iron_23-2148784353.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-make-up-look-using-flat-iron_23-2148784353.jpg?_wi=2",
|
||||
imageAlt: "professional female hair stylist portrait",
|
||||
},
|
||||
{
|
||||
id: "cindy",
|
||||
name: "Cindy Jacobs",
|
||||
role: "Experienced Stylist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-stylish-young-woman_158538-4143.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-stylish-young-woman_158538-4143.jpg?_wi=2",
|
||||
imageAlt: "professional female hairstylist portrait",
|
||||
},
|
||||
];
|
||||
@@ -44,7 +44,7 @@ export default function AboutPage() {
|
||||
"Expert colour matching and application techniques",
|
||||
"Knowledge of the latest blonde trends and styles",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-view-woman-hair-salon_23-2150668444.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-view-woman-hair-salon_23-2150668444.jpg?_wi=2",
|
||||
imageAlt: "professional hair colouring expertise technique",
|
||||
},
|
||||
{
|
||||
@@ -55,7 +55,7 @@ export default function AboutPage() {
|
||||
"We listen to your hair goals and concerns",
|
||||
"Custom solutions tailored to your unique needs",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-while-pregnant_23-2149248122.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-while-pregnant_23-2149248122.jpg?_wi=2",
|
||||
imageAlt: "hair consultation stylist client discussion",
|
||||
},
|
||||
{
|
||||
@@ -66,7 +66,7 @@ export default function AboutPage() {
|
||||
"Salon-grade treatments and formulations",
|
||||
"Products that protect and enhance hair health",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blank-cosmetics-bottles_23-2147787927.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blank-cosmetics-bottles_23-2147787927.jpg?_wi=2",
|
||||
imageAlt: "professional hair care products salon",
|
||||
},
|
||||
{
|
||||
@@ -77,7 +77,7 @@ export default function AboutPage() {
|
||||
"Build lasting relationships with our clients",
|
||||
"Community focused and relationship driven",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-therapist-office-with-modern-furniture-decorations_482257-108008.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-therapist-office-with-modern-furniture-decorations_482257-108008.jpg?_wi=2",
|
||||
imageAlt: "welcoming salon interior client atmosphere",
|
||||
},
|
||||
];
|
||||
|
||||
@@ -80,7 +80,7 @@ export default function BookingPage() {
|
||||
required: false,
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/table-stylist-studio_23-2147784015.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/table-stylist-studio_23-2147784015.jpg?_wi=3"
|
||||
imageAlt="Professional salon styling stations"
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -1,28 +1,54 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Inter } 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 { Public_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Crowned by Him – Hair Salon Thabazimbi | Blonde Specialist",
|
||||
description: "Professional hair salon in Thabazimbi offering blonde transformations, keratin smoothing, and custom styling. Book your appointment with expert stylists Nadine & Cindy today.",
|
||||
keywords: "hair salon Thabazimbi, blonde specialist, keratin treatment, hair colour, professional stylist, hair transformation",
|
||||
metadataBase: new URL("https://crownedbyhim.co.za"),
|
||||
alternates: {
|
||||
canonical: "https://crownedbyhim.co.za",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Crowned by Him – Hair Salon Thabazimbi",
|
||||
description: "Expert blonde transformations and professional hair care. Book your appointment with Nadine & Cindy.",
|
||||
url: "https://crownedbyhim.co.za",
|
||||
siteName: "Crowned by Him",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/medium-shot-transgender-wearing-shells-necklace_23-2149105401.jpg",
|
||||
alt: "Blonde hair transformation",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Crowned by Him – Professional Hair Salon",
|
||||
description: "Beautiful blonde transformations in Thabazimbi. Expert stylists, premium care.",
|
||||
images: ["http://img.b2bpic.net/free-photo/medium-shot-transgender-wearing-shells-necklace_23-2149105401.jpg"],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -31,7 +57,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +71,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -87,7 +87,7 @@ export default function HomePage() {
|
||||
"Full blonde transformations tailored to your skin tone and face shape",
|
||||
"Color corrections and touch-ups using premium professional products",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hairstylist-cutting-hair-client_23-2147769843.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hairstylist-cutting-hair-client_23-2147769843.jpg?_wi=1",
|
||||
imageAlt: "Professional blonde highlights application",
|
||||
},
|
||||
{
|
||||
@@ -98,7 +98,7 @@ export default function HomePage() {
|
||||
"Complete colour changes designed around your unique features and style",
|
||||
"Colour refresh and refresh treatments to keep your look vibrant and fresh",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-hair-salon_23-2150668437.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-hair-salon_23-2150668437.jpg?_wi=1",
|
||||
imageAlt: "Full colour treatment results",
|
||||
},
|
||||
{
|
||||
@@ -109,7 +109,7 @@ export default function HomePage() {
|
||||
"Improves manageability and shine while maintaining natural movement",
|
||||
"Perfect for managing humidity and creating effortless styling",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-woman-with-curly-hairs-casual-outfit-posing-beige_273443-3896.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-woman-with-curly-hairs-casual-outfit-posing-beige_273443-3896.jpg?_wi=1",
|
||||
imageAlt: "Keratin smoothing treatment application",
|
||||
},
|
||||
{
|
||||
@@ -120,7 +120,7 @@ export default function HomePage() {
|
||||
"Healthy, natural-looking styles that enhance your unique beauty",
|
||||
"Expert consultation to find the perfect style for you",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-black-person-taking-care-afro-hair_23-2149575446.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-black-person-taking-care-afro-hair_23-2149575446.jpg?_wi=1",
|
||||
imageAlt: "Natural hairstyle styling consultation",
|
||||
},
|
||||
]}
|
||||
@@ -147,7 +147,7 @@ export default function HomePage() {
|
||||
name: "Blonde Transformation",
|
||||
role: "Full Colour Change",
|
||||
testimonial: "A complete blonde transformation that brightens and rejuvenates. This stunning result showcases our expertise in colour matching and application.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-blonde-female-friends-posing_273609-7273.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-blonde-female-friends-posing_273609-7273.jpg?_wi=1",
|
||||
imageAlt: "Before and after blonde transformation",
|
||||
icon: Sparkles,
|
||||
},
|
||||
@@ -156,7 +156,7 @@ export default function HomePage() {
|
||||
name: "Balayage Highlights",
|
||||
role: "Dimensional Blonde",
|
||||
testimonial: "Beautiful balayage highlights adding dimension and movement to natural hair. The perfectly blended blonde tones create a sun-kissed, natural appearance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-young-woman-with-cocktail-cafe-outdoor_624325-412.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-young-woman-with-cocktail-cafe-outdoor_624325-412.jpg?_wi=1",
|
||||
imageAlt: "Balayage highlights transformation",
|
||||
icon: Sparkles,
|
||||
},
|
||||
@@ -165,7 +165,7 @@ export default function HomePage() {
|
||||
name: "Keratin Results",
|
||||
role: "Smoothing Treatment",
|
||||
testimonial: "Dramatic keratin smoothing transformation showing reduced frizz and enhanced shine. Notice the silky, manageable texture and radiant shine.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-with-healthy-long-hair_268835-1510.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-with-healthy-long-hair_268835-1510.jpg?_wi=1",
|
||||
imageAlt: "Keratin smoothing treatment results",
|
||||
icon: Sparkles,
|
||||
},
|
||||
@@ -174,7 +174,7 @@ export default function HomePage() {
|
||||
name: "Colour Correction",
|
||||
role: "Professional Correction",
|
||||
testimonial: "Expert colour correction bringing damaged hair back to beautiful health. This transformation shows our skill in correcting previous colour work.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/laughing-women-near-wall_23-2147784722.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/laughing-women-near-wall_23-2147784722.jpg?_wi=1",
|
||||
imageAlt: "Colour correction transformation",
|
||||
icon: Sparkles,
|
||||
},
|
||||
@@ -183,7 +183,7 @@ export default function HomePage() {
|
||||
name: "Natural Style Cut",
|
||||
role: "Custom Styling",
|
||||
testimonial: "A personalized cut and style that brings out natural beauty. This custom styling enhances face shape and creates an effortlessly elegant look.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/charming-girl-chair-hairdresser_23-2147769814.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/charming-girl-chair-hairdresser_23-2147769814.jpg?_wi=1",
|
||||
imageAlt: "Natural style cut and styling",
|
||||
icon: Sparkles,
|
||||
},
|
||||
@@ -192,7 +192,7 @@ export default function HomePage() {
|
||||
name: "Complete Makeover",
|
||||
role: "Full Hair Transformation",
|
||||
testimonial: "A complete hair transformation combining cutting, colouring, and styling expertise. Notice the dramatic improvement in health, shine, and overall appearance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-getting-her-hair-brushed-salon-by-beautician_23-2148817184.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-getting-her-hair-brushed-salon-by-beautician_23-2148817184.jpg?_wi=1",
|
||||
imageAlt: "Complete hair makeover transformation",
|
||||
icon: Sparkles,
|
||||
},
|
||||
@@ -218,14 +218,14 @@ export default function HomePage() {
|
||||
id: "nadine",
|
||||
name: "Nadine Coetzee",
|
||||
role: "Blonde Specialist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-make-up-look-using-flat-iron_23-2148784353.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-make-up-look-using-flat-iron_23-2148784353.jpg?_wi=1",
|
||||
imageAlt: "Nadine Coetzee - Blonde Specialist",
|
||||
},
|
||||
{
|
||||
id: "cindy",
|
||||
name: "Cindy Jacobs",
|
||||
role: "Experienced Stylist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-stylish-young-woman_158538-4143.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-stylish-young-woman_158538-4143.jpg?_wi=1",
|
||||
imageAlt: "Cindy Jacobs - Experienced Stylist",
|
||||
},
|
||||
]}
|
||||
@@ -254,7 +254,7 @@ export default function HomePage() {
|
||||
"Expert colour matching and application techniques",
|
||||
"Knowledge of the latest blonde trends and styles",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-view-woman-hair-salon_23-2150668444.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-view-woman-hair-salon_23-2150668444.jpg?_wi=1",
|
||||
imageAlt: "Professional colour expertise",
|
||||
},
|
||||
{
|
||||
@@ -265,7 +265,7 @@ export default function HomePage() {
|
||||
"We listen to your hair goals and concerns",
|
||||
"Custom solutions tailored to your unique needs",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-while-pregnant_23-2149248122.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-while-pregnant_23-2149248122.jpg?_wi=1",
|
||||
imageAlt: "Professional consultation session",
|
||||
},
|
||||
{
|
||||
@@ -276,7 +276,7 @@ export default function HomePage() {
|
||||
"Salon-grade treatments and formulations",
|
||||
"Products that protect and enhance hair health",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blank-cosmetics-bottles_23-2147787927.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blank-cosmetics-bottles_23-2147787927.jpg?_wi=1",
|
||||
imageAlt: "Professional hair care products",
|
||||
},
|
||||
{
|
||||
@@ -287,7 +287,7 @@ export default function HomePage() {
|
||||
"Build lasting relationships with our clients",
|
||||
"Community focused and relationship driven",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-therapist-office-with-modern-furniture-decorations_482257-108008.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-therapist-office-with-modern-furniture-decorations_482257-108008.jpg?_wi=1",
|
||||
imageAlt: "Welcoming salon atmosphere",
|
||||
},
|
||||
]}
|
||||
@@ -307,7 +307,7 @@ export default function HomePage() {
|
||||
description="Book now and leave feeling confident, polished, and beautifully crowned."
|
||||
subdescription="Your journey to beautiful hair starts here"
|
||||
icon={Heart}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-young-business-woman-isolated-white-wall_231208-8705.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-young-business-woman-isolated-white-wall_231208-8705.jpg?_wi=1"
|
||||
imageAlt="Ready to transform your hair"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
@@ -351,7 +351,7 @@ export default function HomePage() {
|
||||
required: false,
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/table-stylist-studio_23-2147784015.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/table-stylist-studio_23-2147784015.jpg?_wi=1"
|
||||
imageAlt="Professional salon interior"
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -59,7 +59,7 @@ export default function ServicesPage() {
|
||||
"Color corrections and touch-ups using premium professional products",
|
||||
"Toning and gloss services to maintain your perfect blonde shade",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hairstylist-cutting-hair-client_23-2147769843.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hairstylist-cutting-hair-client_23-2147769843.jpg?_wi=2",
|
||||
imageAlt: "Professional blonde highlights application",
|
||||
},
|
||||
{
|
||||
@@ -71,7 +71,7 @@ export default function ServicesPage() {
|
||||
"Colour refresh treatments to keep your look vibrant and fresh",
|
||||
"Professional color protection for long-lasting results",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-hair-salon_23-2150668437.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-hair-salon_23-2150668437.jpg?_wi=2",
|
||||
imageAlt: "Full colour treatment results",
|
||||
},
|
||||
{
|
||||
@@ -83,7 +83,7 @@ export default function ServicesPage() {
|
||||
"Perfect for managing humidity and creating effortless styling",
|
||||
"Keratin touch-ups to maintain your smooth, healthy hair",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-woman-with-curly-hairs-casual-outfit-posing-beige_273443-3896.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-woman-with-curly-hairs-casual-outfit-posing-beige_273443-3896.jpg?_wi=2",
|
||||
imageAlt: "Keratin smoothing treatment application",
|
||||
},
|
||||
{
|
||||
@@ -95,7 +95,7 @@ export default function ServicesPage() {
|
||||
"Expert consultation to find the perfect style for you",
|
||||
"Styling tips and product recommendations for at-home maintenance",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-black-person-taking-care-afro-hair_23-2149575446.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-black-person-taking-care-afro-hair_23-2149575446.jpg?_wi=2",
|
||||
imageAlt: "Natural hairstyle styling consultation",
|
||||
},
|
||||
]}
|
||||
@@ -119,7 +119,7 @@ export default function ServicesPage() {
|
||||
name: "Blonde Transformation",
|
||||
role: "Full Colour Change",
|
||||
testimonial: "A complete blonde transformation that brightens and rejuvenates. The expert colour matching and application created a stunning result that exceeded expectations.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-blonde-female-friends-posing_273609-7273.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-blonde-female-friends-posing_273609-7273.jpg?_wi=2",
|
||||
imageAlt: "Client blonde transformation",
|
||||
icon: Sparkles,
|
||||
},
|
||||
@@ -128,7 +128,7 @@ export default function ServicesPage() {
|
||||
name: "Keratin Success",
|
||||
role: "Smoothing Treatment",
|
||||
testimonial: "The keratin smoothing treatment completely transformed my hair. It's now silky, manageable, and shiny. The results have lasted for months!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-with-healthy-long-hair_268835-1510.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-with-healthy-long-hair_268835-1510.jpg?_wi=2",
|
||||
imageAlt: "Client keratin results",
|
||||
icon: Sparkles,
|
||||
},
|
||||
@@ -137,7 +137,7 @@ export default function ServicesPage() {
|
||||
name: "Style Perfection",
|
||||
role: "Natural Styling",
|
||||
testimonial: "The personalized consultation helped me find a style that truly works for my face and lifestyle. I feel more confident every day with my new look.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/charming-girl-chair-hairdresser_23-2147769814.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/charming-girl-chair-hairdresser_23-2147769814.jpg?_wi=2",
|
||||
imageAlt: "Client styling satisfaction",
|
||||
icon: Sparkles,
|
||||
},
|
||||
@@ -185,7 +185,7 @@ export default function ServicesPage() {
|
||||
required: false,
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/table-stylist-studio_23-2147784015.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/table-stylist-studio_23-2147784015.jpg?_wi=2"
|
||||
imageAlt: "Professional salon styling station"
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -23,7 +23,7 @@ export default function TransformationsPage() {
|
||||
name: "Blonde Transformation",
|
||||
role: "Full Colour Change",
|
||||
testimonial: "A complete blonde transformation that brightens and rejuvenates. This stunning result showcases our expertise in colour matching and application.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-blonde-female-friends-posing_273609-7273.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-blonde-female-friends-posing_273609-7273.jpg?_wi=3",
|
||||
imageAlt: "blonde hair before after transformation",
|
||||
icon: Sparkles,
|
||||
},
|
||||
@@ -32,7 +32,7 @@ export default function TransformationsPage() {
|
||||
name: "Balayage Highlights",
|
||||
role: "Dimensional Blonde",
|
||||
testimonial: "Beautiful balayage highlights adding dimension and movement to natural hair. The perfectly blended blonde tones create a sun-kissed, natural appearance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-young-woman-with-cocktail-cafe-outdoor_624325-412.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-young-woman-with-cocktail-cafe-outdoor_624325-412.jpg?_wi=2",
|
||||
imageAlt: "balayage highlights before after beautiful",
|
||||
icon: Sparkles,
|
||||
},
|
||||
@@ -41,7 +41,7 @@ export default function TransformationsPage() {
|
||||
name: "Keratin Results",
|
||||
role: "Smoothing Treatment",
|
||||
testimonial: "Dramatic keratin smoothing transformation showing reduced frizz and enhanced shine. Notice the silky, manageable texture and radiant shine.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-with-healthy-long-hair_268835-1510.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-with-healthy-long-hair_268835-1510.jpg?_wi=3",
|
||||
imageAlt: "keratin treatment before after smooth hair",
|
||||
icon: Sparkles,
|
||||
},
|
||||
@@ -50,7 +50,7 @@ export default function TransformationsPage() {
|
||||
name: "Colour Correction",
|
||||
role: "Professional Correction",
|
||||
testimonial: "Expert colour correction bringing damaged hair back to beautiful health. This transformation shows our skill in correcting previous colour work.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/laughing-women-near-wall_23-2147784722.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/laughing-women-near-wall_23-2147784722.jpg?_wi=2",
|
||||
imageAlt: "colour correction before after healthy hair",
|
||||
icon: Sparkles,
|
||||
},
|
||||
@@ -59,7 +59,7 @@ export default function TransformationsPage() {
|
||||
name: "Natural Style Cut",
|
||||
role: "Custom Styling",
|
||||
testimonial: "A personalized cut and style that brings out natural beauty. This custom styling enhances face shape and creates an effortlessly elegant look.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/charming-girl-chair-hairdresser_23-2147769814.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/charming-girl-chair-hairdresser_23-2147769814.jpg?_wi=3",
|
||||
imageAlt: "natural haircut before after styled",
|
||||
icon: Sparkles,
|
||||
},
|
||||
@@ -68,7 +68,7 @@ export default function TransformationsPage() {
|
||||
name: "Complete Makeover",
|
||||
role: "Full Hair Transformation",
|
||||
testimonial: "A complete hair transformation combining cutting, colouring, and styling expertise. Notice the dramatic improvement in health, shine, and overall appearance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-getting-her-hair-brushed-salon-by-beautician_23-2148817184.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-getting-her-hair-brushed-salon-by-beautician_23-2148817184.jpg?_wi=2",
|
||||
imageAlt: "complete hair makeover transformation results",
|
||||
icon: Sparkles,
|
||||
},
|
||||
@@ -121,7 +121,7 @@ export default function TransformationsPage() {
|
||||
description="Book now and leave feeling confident, polished, and beautifully crowned."
|
||||
subdescription="Your journey to beautiful hair starts here"
|
||||
icon={Sparkles}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-young-business-woman-isolated-white-wall_231208-8705.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-young-business-woman-isolated-white-wall_231208-8705.jpg?_wi=2"
|
||||
imageAlt="confident woman beautiful hair portrait"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
|
||||
Reference in New Issue
Block a user