From 69d57838a80c876dbbe57ffaaf210e854e277d7d Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 15 Jul 2026 09:25:29 +0000 Subject: [PATCH] Deploy --- .../sections/ThornveldExperiencesSection.tsx | 65 +++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 src/components/sections/ThornveldExperiencesSection.tsx diff --git a/src/components/sections/ThornveldExperiencesSection.tsx b/src/components/sections/ThornveldExperiencesSection.tsx new file mode 100644 index 0000000..79d0de3 --- /dev/null +++ b/src/components/sections/ThornveldExperiencesSection.tsx @@ -0,0 +1,65 @@ +import Image from "next/image" +import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/Card" +import Badge from "@/components/ui/Badge" + +const experiences = [ + { + title: "Self-Catering Chalets", + description: "Fully equipped kitchens, private braai areas, and verandas shaded by ancient knobthorn trees – your home in the bush.", + image: "https://images.pexels.com/photos/30817410/pexels-photo-30817410.jpeg?auto=compress&cs=tinysrgb&h=350" + }, + { + title: "Guided Walking Trails", + description: "Daily walks with our rangers – learn to identify tracks, calls, and the quiet rhythms of the thornveld.", + image: "https://images.pexels.com/photos/30817410/pexels-photo-30817410.jpeg?auto=compress&cs=tinysrgb&h=350" + }, + { + title: "Dawn Birding", + description: "Early mornings alive with kingfishers, hornbills, and rollers. Our guides know every perch.", + image: "https://images.pexels.com/photos/30817410/pexels-photo-30817410.jpeg?auto=compress&cs=tinysrgb&h=350" + }, + { + title: "Sundowner Drives", + description: "Evening game drives ending on a panoramic ridge with homemade rusks and the setting sun painting the Lowveld.", + image: "https://images.pexels.com/photos/30817410/pexels-photo-30817410.jpeg?auto=compress&cs=tinysrgb&h=350" + } +] + +export default function ThornveldExperiencesSection() { + return ( +
+
+
+

Life in the Thornveld

+

+ Four ways to slow down and sink into the bush. +

+ + Since 1998 + +
+
+ {experiences.map((exp, idx) => ( + +
+ {exp.title} +
+ + {exp.title} + + +

{exp.description}

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