From 39c38a8f90c483ff8eb786c2c86980b8829131b0 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Thu, 4 Jun 2026 09:17:02 +0000 Subject: [PATCH] Deploy --- .../sections/TestimonialsSection.tsx | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/components/sections/TestimonialsSection.tsx diff --git a/src/components/sections/TestimonialsSection.tsx b/src/components/sections/TestimonialsSection.tsx new file mode 100644 index 0000000..8b149ab --- /dev/null +++ b/src/components/sections/TestimonialsSection.tsx @@ -0,0 +1,24 @@ +'use client' +export default function TestimonialsSection() { + const testimonials = [ + { name: "Nadia Botha", role: "Café Owner, Woodstock", quote: "Kapa Roast's Ethiopian Yirgacheffe sells faster than any bean we've ever stocked." }, + { name: "Thabo Mokoena", role: "Home Brewer", quote: "The aroma alone tells you this isn't supermarket coffee—it's something special." }, + { name: "Sarah-Lee Govender", role: "Barista Trainer", quote: "I use Kapa Roast for every workshop. The traceability and flavour are unmatched." }, + ] + return ( +
+
+

What Our Community Says

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

“{t.quote}”

+

{t.name}

+

{t.role}

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