From c809fda6fca0c5065540cf2f29583301779f1cb6 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 3 Jun 2026 16:38:52 +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..79de409 --- /dev/null +++ b/src/components/sections/TestimonialsSection.tsx @@ -0,0 +1,24 @@ +'use client' +export default function TestimonialsSection() { + const testimonials = [ + { name: "Maria Lopez", role: "Regular diner", quote: "The paella at La Roc is the closest thing to Valencia I\'ve found in the city." }, + { name: "Carlos Fernandez", role: "Wine enthusiast", quote: "Their selection of Spanish wines is remarkable, and the sommelier\'s recommendations are always spot on." }, + { name: "Elena Garcia", role: "First-time visitor", quote: "From the moment you walk in, you feel the passion for Spanish cuisine. The tapas were incredible." }, + ] + return ( +
+
+

What Our Guests Say

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

“{t.quote}”

+

{t.name}

+

{t.role}

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