From 4c9d2d20b50e55ceffb7a0285bbff496071787b9 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sun, 26 Jul 2026 17:04:58 +0000 Subject: [PATCH] Deploy --- .../sections/SafariExperiencesSection.tsx | 101 ++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 src/components/sections/SafariExperiencesSection.tsx diff --git a/src/components/sections/SafariExperiencesSection.tsx b/src/components/sections/SafariExperiencesSection.tsx new file mode 100644 index 0000000..c63b861 --- /dev/null +++ b/src/components/sections/SafariExperiencesSection.tsx @@ -0,0 +1,101 @@ +import Image from "next/image" +import { Compass, MapPin, Moon, Star, Users } from 'lucide-react' + +export default function SafariExperiencesSection() { + const experiences = [ + { + icon: Compass, + title: "Guided Game Drives", + desc: "Open-vehicle drives through Hluhluwe-iMfolozi Park with expert trackers—early mornings and golden sundowners included.", + }, + { + icon: MapPin, + title: "Walking Safaris", + desc: "Follow the spoor of the Big Five on foot with armed rangers who read the bush like a storybook.", + }, + { + icon: Moon, + title: "Sundowner Boma Dinners", + desc: "Evenings under a KZN sky: fire-roasted meats, local wine, and the crackle of a mopane fire.", + }, + { + icon: Users, + title: "Zulu Cultural Immersion", + desc: "Visit a neighbouring village for beading, dancing, and stories passed down through generations.", + }, + ] + + return ( +
+
+
+ {/* Left side — image with overlapping sticker */} +
+
+ Safari vehicle at sunset in KwaZulu Natal +
+ {/* Sticker badge */} +
+ + Big Five +
+ Territory +
+
+ {/* Second overlapping image */} +
+ Zulu cultural dancers +
+
+ + {/* Right side — content */} +
+

+ Safari Experiences +

+

+ The bush speaks — +
+ we answer +

+
+ {experiences.map((exp, i) => { + const Icon = exp.icon + return ( +
+
+ +
+
+

+ {exp.title} +

+

+ {exp.desc} +

+
+
+ ) + })} +
+
+
+
+
+ ) +}