From 7bf9348e4b3f9017686c7750674e6577483111b9 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 15 Jul 2026 09:25:26 +0000 Subject: [PATCH] Deploy --- .../sections/GuestVoicesSection.tsx | 64 +++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 src/components/sections/GuestVoicesSection.tsx diff --git a/src/components/sections/GuestVoicesSection.tsx b/src/components/sections/GuestVoicesSection.tsx new file mode 100644 index 0000000..5e44f2a --- /dev/null +++ b/src/components/sections/GuestVoicesSection.tsx @@ -0,0 +1,64 @@ +'use client' + +import Image from 'next/image' + +export default function GuestVoicesSection() { + const voices = [ + { + quote: "Watching elephants drink from the waterhole at dusk — our children will never forget that quiet magic.", + name: "The Dlamini Family", + location: "Johannesburg", + image: "https://images.pexels.com/photos/37769918/pexels-photo-37769918.jpeg?auto=compress&cs=tinysrgb&h=350" + }, + { + quote: "Marietjie's home-baked bread with apricot jam, fresh from the oven... pure Thornveld warmth.", + name: "Sarah & Tom", + location: "London, UK", + image: "https://images.pexels.com/photos/7431701/pexels-photo-7431701.jpeg?auto=compress&cs=tinysrgb&h=350" + }, + { + quote: "Learning to track spoor with ranger Thabo — warthog, kudu, even a leopard's pugmark. Real bush school.", + name: "Jenna & Ryan", + location: "Cape Town", + image: "https://images.pexels.com/photos/7431701/pexels-photo-7431701.jpeg?auto=compress&cs=tinysrgb&h=350" + } + ] + + return ( +
+
+

+ Entries from our veranda guestbook +

+
+ {voices.map((voice, i) => ( +
+
+
+ {`Photo +
+
+

{voice.name}

+

{voice.location}

+
+
+

+ “{voice.quote}” +

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