diff --git a/src/components/sections/GracefulBeginningsSection.tsx b/src/components/sections/GracefulBeginningsSection.tsx new file mode 100644 index 0000000..9be0a96 --- /dev/null +++ b/src/components/sections/GracefulBeginningsSection.tsx @@ -0,0 +1,68 @@ +'use client' + +import { Shield, TreePine, Users, Waves } from 'lucide-react' + +export default function GracefulBeginningsSection() { + return ( +
+
+
+ {/* Image */} +
+ KwaNtofoNtofo pool and braai area +
+
+ + {/* Story */} +
+

+ Since 2004 +

+

+ Graceful Beginnings +

+
+

+ KwaNtofoNtofo was born from a dream — to create a home-away-from-home in the heart of Pietermaritzburg. + Rooted in the Zulu philosophy of ubuntu ("I am because we are"), we opened our doors in 2004 + with four thoughtfully designed rooms, each telling its own story through theme and decor. +

+

+ Just across from a nature reserve, our guests wake to the sight of zebras grazing and monkeys swinging + in the trees. We are 1 km from Pietermaritzburg Airport, 4 km from UKZN, and a short drive to major + shopping centres — yet you feel a world away in our private, secure compound. +

+

+ Behind the burglar alarm and the shaded parking lies a place where traditional South African + hospitality meets modern luxury. Our staff, trained in professional service with a warm smile, + ensure every stay is memorable. Whether it's a full English breakfast by the pool, a braai in the + tranquil entertainment area, or a quiet evening in the lounge, you are treated like royalty. +

+
+ {/* Feature highlights */} +
+ {[ + { icon: Shield, label: "Secure Parking & Alarm" }, + { icon: TreePine, label: "Across from Nature Reserve" }, + { icon: Waves, label: "Pool & Braai Area" }, + { icon: Users, label: "Attentive Professional Staff" }, + ].map((item, i) => { + const Icon = item.icon + return ( +
+ + {item.label} +
+ ) + })} +
+
+
+
+
+ ) +} \ No newline at end of file