From 70914ddefa6d49000a56f1a1da3af8508062f5d7 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:47:36 +0000 Subject: [PATCH] Deploy --- src/components/sections/PricingSection.tsx | 84 ++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 src/components/sections/PricingSection.tsx diff --git a/src/components/sections/PricingSection.tsx b/src/components/sections/PricingSection.tsx new file mode 100644 index 0000000..f413e92 --- /dev/null +++ b/src/components/sections/PricingSection.tsx @@ -0,0 +1,84 @@ +import { Card, CardHeader, CardTitle, CardContent, CardFooter } from '@/components/ui/Card' +import Button from '@/components/ui/Button' +import Image from 'next/image' + +export default function PricingSection() { + const services = [ + { + title: "Precision Haircuts", + description: "Expert cuts tailored to your face shape and hair texture. Includes consultation and styling.", + price: "R250", + image: "https://images.pexels.com/photos/3356211/pexels-photo-3356211.jpeg?auto=compress&cs=tinysrgb&h=350&w=400", + features: ["Consultation", "Wash & condition", "Blow-dry finish"] + }, + { + title: "Professional Colouring", + description: "Full colour, highlights, balayage, and root touch-ups using premium Schwarzkopf products.", + price: "R550 – R1,200", + image: "https://images.pexels.com/photos/8468142/pexels-photo-8468142.jpeg?auto=compress&cs=tinysrgb&h=350&w=400", + features: ["Colour consultation", "Application", "Toner & gloss"] + }, + { + title: "Keratin Smoothing", + description: "Brazilian keratin treatment that eliminates frizz, adds shine, and lasts up to 3 months.", + price: "R890", + image: "https://images.pexels.com/photos/7447150/pexels-photo-7447150.jpeg?auto=compress&cs=tinysrgb&h=350&w=400", + features: ["Deep cleanse", "Keratin infusion", "Flat-iron sealing"] + }, + { + title: "Nail Art & Manicure", + description: "Gel, acrylic, and natural nail services with intricate designs — from classic French to modern art.", + price: "R180 – R650", + image: "https://images.pexels.com/photos/12275462/pexels-photo-12275462.jpeg?auto=compress&cs=tinysrgb&h=350&w=400", + features: ["Shaping & cuticle care", "Polish or gel", "Design & top coat"] + } + ] + + return ( +
+
+

+ Premium Services — Transparent Pricing +

+

+ Every treatment uses salon-grade products and is performed by certified stylists. We believe in honest pricing — no hidden fees, no surprises. +

+
+ {services.map((service, index) => ( + +
+ {service.title} +
+ + {service.title} + + +

{service.description}

+
    + {service.features.map((feat, i) => ( +
  • + + {feat} +
  • + ))} +
+
+ + {service.price} + + +
+ ))} +
+
+
+ ) +} \ No newline at end of file