From c3ab8f106445d4d7eb3e5f26e3daef6195863c2c Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Thu, 4 Jun 2026 11:45:22 +0000 Subject: [PATCH] Deploy --- .../sections/TestimonialsSection.tsx | 23 +++++++++++++++++++ 1 file changed, 23 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..4bfc765 --- /dev/null +++ b/src/components/sections/TestimonialsSection.tsx @@ -0,0 +1,23 @@ +export default function TestimonialsSection() { + const testimonials = [ + { name: "Nomsa Dlamini", role: "Regular from Durban North", quote: "Durban Curry's bunny chow is the best I've had outside of Grey Street." }, + { name: "Raj Patel", role: "Food blogger from Cape Town", quote: "The blend of Indian spices with Durban freshness is unforgettable." }, + { name: "Sarah van der Merwe", role: "Family of four", quote: "Our kids love the mild butter chicken while we enjoy the fiery mutton curry." }, + ] + return ( +
+
+

What Our Guests Say

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

"{t.quote}"

+

{t.name}

+

{t.role}

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