From 46d56fd6994d09fead7a74d4f2e6ca4106446514 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:47:11 +0000 Subject: [PATCH] Deploy --- .../sections/AboutKwaNtofontofoSection.tsx | 66 +++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 src/components/sections/AboutKwaNtofontofoSection.tsx diff --git a/src/components/sections/AboutKwaNtofontofoSection.tsx b/src/components/sections/AboutKwaNtofontofoSection.tsx new file mode 100644 index 0000000..9a08842 --- /dev/null +++ b/src/components/sections/AboutKwaNtofontofoSection.tsx @@ -0,0 +1,66 @@ +'use client' + +import Image from 'next/image' +import { Car, Coffee, MapPin, Tag, UtensilsCrossed, Waves, Wifi } from 'lucide-react' + +export default function AboutKwaNtofontofoSection() { + const amenities = [ + { icon: Coffee, label: 'Tea & Coffee' }, + { icon: Car, label: 'Free Secure Parking' }, + { icon: Wifi, label: 'Wi-Fi' }, + { icon: Tag, label: 'Laundry Service' }, + { icon: Waves, label: 'Swimming Pool' }, + { icon: UtensilsCrossed, label: 'Breakfast Included' }, + ] + + return ( +
+
+
+
+ Tranquil pool and entertainment area at KwaNtofontofo +
+
+

+ A Home Away From Home +

+

+ Established in 2004, KwaNtofontofo has grown into one of the finest graded guest houses in KwaZulu-Natal. + We blend ubuntu warmth with English formality to create a space where every guest feels treated like a King or Queen. +

+

+ Just across the street, the Nature Reserve invites you to watch zebras grazing and monkeys swinging in the trees. + We are 1 km from Pietermaritzburg Airport, 4 km from UKZN University, and 4–8 km from major shopping centres. +

+
+ {amenities.map((item) => { + const Icon = item.icon + return ( +
+ + {item.label} +
+ ) + })} +
+
+
+ +
+

44 Rutherford Circle

+

Bisley, Pietermaritzburg, 3201, KwaZulu-Natal

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