From eb4443c0fb848441c477a60e5950fbe4d497705a Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:47:45 +0000 Subject: [PATCH] Deploy --- src/components/sections/UbuntuTeamSection.tsx | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 src/components/sections/UbuntuTeamSection.tsx diff --git a/src/components/sections/UbuntuTeamSection.tsx b/src/components/sections/UbuntuTeamSection.tsx new file mode 100644 index 0000000..dc10113 --- /dev/null +++ b/src/components/sections/UbuntuTeamSection.tsx @@ -0,0 +1,63 @@ +'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}"

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