'use client' import Image from 'next/image' const team = [ { name: 'Nompumelelo Zondi', role: 'Host & Manager', message: 'I have been welcoming guests since 2004. For me, ubuntu means every visitor leaves as family. I love seeing their faces light up when they spot a zebra from the veranda.', image: 'https://images.pexels.com/photos/8837170/pexels-photo-8837170.jpeg?auto=compress&cs=tinysrgb&h=350', }, { name: 'Thandiwe Mthembu', role: 'Hospitality Coordinator', message: 'Making sure every room is perfect and every breakfast is warm is my joy. KwaNtofontofo is a home, and I take pride in that feeling.', image: 'https://images.pexels.com/photos/8837170/pexels-photo-8837170.jpeg?auto=compress&cs=tinysrgb&h=350', }, { name: 'Sipho Dlamini', role: 'Grounds & Maintenance', message: 'I keep the garden, pool, and braai area pristine. Our guests deserve a beautiful outside space to relax and connect with nature.', image: 'https://images.pexels.com/photos/8837170/pexels-photo-8837170.jpeg?auto=compress&cs=tinysrgb&h=350', }, ] export default function UbuntuTeamSection() { return (

The People Behind the Welcome

A small team with big hearts – our staff live the spirit of ubuntu every day.

{team.map((member, i) => (
{member.name}

{member.name}

{member.role}

"{member.message}"

))}
) }