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}

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