From 321acc4c10a82b64158f4eadcc8826b5ef0a4929 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 3 Aug 2026 11:42:10 +0000 Subject: [PATCH] Deploy --- .../sections/ClientStoriesSection.tsx | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/components/sections/ClientStoriesSection.tsx diff --git a/src/components/sections/ClientStoriesSection.tsx b/src/components/sections/ClientStoriesSection.tsx new file mode 100644 index 0000000..9b892ba --- /dev/null +++ b/src/components/sections/ClientStoriesSection.tsx @@ -0,0 +1,28 @@ +export default function ClientStoriesSection() { + const testimonials = [ + { name: 'Thandi M.', service: 'Knotless braids + copper colour', quote: 'My knotless braids lasted eight weeks with zero frizz. The colour was exactly the copper shade I brought in.' }, + { name: 'Naledi K.', service: 'Keratin smoothing treatment', quote: 'My 4C hair has never been easier to manage. Wash days went from two hours to thirty minutes.' }, + { name: 'Aisha P.', service: 'Bridal updo + gel nails', quote: 'Zama did my bridal updo and nails — every guest asked where I had them done.' }, + ] + + return ( +
+
+
+

Client stories from Fourways

+

Cared for by hands that listen

+
+
+ {testimonials.map((t, i) => ( +
+ ★★★★★ +

"{t.quote}"

+

{t.name}

+

{t.service}

+
+ ))} +
+
+
+ ) +} \ No newline at end of file