'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}”

))}
) }