Switch to version 2: added src/pages/HomePage/sections/Services.tsx

This commit is contained in:
2026-06-13 17:07:00 +00:00
parent 59861449ac
commit d10f710f0b

View File

@@ -0,0 +1,82 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "services" section.
import React from 'react';
import FeaturesTaggedCards from '@/components/sections/features/FeaturesTaggedCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ServicesSection(): React.JSX.Element {
return (
<div id="services" data-section="services">
<SectionErrorBoundary name="services">
<FeaturesTaggedCards
tag="SERVICES"
title="Our Luxury Treatments"
description="Choose from our curated menu of beauty and wellness services."
items={[
{
tag: "Hair",
title: "Haircut & Styling",
description: "Professional cuts tailored to your unique face shape.",
primaryButton: {
text: "Book Now",
href: "#booking",
},
imageSrc: "http://img.b2bpic.net/free-photo/instruments-used-latino-hair-salon_23-2150555177.jpg",
},
{
tag: "Bridal",
title: "Bridal Makeup",
description: "Expert bridal artistry for your special day.",
primaryButton: {
text: "Book Now",
href: "#booking",
},
imageSrc: "http://img.b2bpic.net/free-photo/wellness-concept-with-woman-with-creme-face_23-2147816997.jpg",
},
{
tag: "Skin",
title: "Facial & Skincare",
description: "Rejuvenating facials for glowing skin.",
primaryButton: {
text: "Book Now",
href: "#booking",
},
imageSrc: "http://img.b2bpic.net/free-photo/woman-applying-cosmetics-model_23-2148398679.jpg",
},
{
tag: "Treatments",
title: "Keratin & Color",
description: "High-quality chemical treatments for healthy shine.",
primaryButton: {
text: "Book Now",
href: "#booking",
},
imageSrc: "http://img.b2bpic.net/free-photo/attractive-asian-woman-posing-towel-after-shower_197531-19624.jpg",
},
{
tag: "Nails",
title: "Nail Art & Spa",
description: "Pamper yourself with our relaxing nail services.",
primaryButton: {
text: "Book Now",
href: "#booking",
},
imageSrc: "http://img.b2bpic.net/free-photo/comb-scissor-box_23-2148352937.jpg",
},
{
tag: "Body",
title: "Waxing & Threading",
description: "Precision hair removal for a flawless finish.",
primaryButton: {
text: "Book Now",
href: "#booking",
},
imageSrc: "http://img.b2bpic.net/free-photo/steel-scissors-lie-wave-silk-brown-hair_8353-7032.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}