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