From f20c1a6c0081f00be8c7a56475eaae2d290e9b78 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:47:43 +0000 Subject: [PATCH] Deploy --- .../sections/TestimonialCarouselSection.tsx | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 src/components/sections/TestimonialCarouselSection.tsx diff --git a/src/components/sections/TestimonialCarouselSection.tsx b/src/components/sections/TestimonialCarouselSection.tsx new file mode 100644 index 0000000..f587cba --- /dev/null +++ b/src/components/sections/TestimonialCarouselSection.tsx @@ -0,0 +1,48 @@ +'use client' + +export default function TestimonialCarouselSection() { + const testimonials = [ + { + name: 'Thandi M.', + role: 'Student, Durban', + quote: 'S.A.W tees are the first quality T-shirts I found that actually fit right and don\'t shrink. Smiso really understood what we needed.', + image: 'https://images.pexels.com/photos/1317712/pexels-photo-1317712.jpeg?auto=compress&cs=tinysrgb&h=350' + }, + { + name: 'Lungelo K.', + role: 'Influencer, Joburg', + quote: 'The Khumalo Origin collection dropped exactly what streetwear in SA needed — minimalist, bold, and unapologetically young.', + image: 'https://images.pexels.com/photos/2035464/pexels-photo-2035464.jpeg?auto=compress&cs=tinysrgb&h=350' + }, + { + name: 'Anele Dlamini', + role: 'Content creator, Cape Town', + quote: 'I\'ve been wearing my S.A.W tee almost daily — holds colour, breathable fabric, and the look just works.', + image: 'https://images.pexels.com/photos/2035464/pexels-photo-2035464.jpeg?auto=compress&cs=tinysrgb&h=350' + } + ] + + return ( +
+
+

Real Talk

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

{t.name}

+

{t.role}

+
+
+

"{t.quote}"

+
+ ))} +
+
+
+ ) +}