diff --git a/src/components/sections/SafariExperiencesSection.tsx b/src/components/sections/SafariExperiencesSection.tsx new file mode 100644 index 0000000..319ad65 --- /dev/null +++ b/src/components/sections/SafariExperiencesSection.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: "Game Drives", + description: "Twice‑daily guided safaris in open vehicles. Track lion, leopard and elephant with rangers who grew up on these trails.", + image: "https://images.pexels.com/photos/13314777/pexels-photo-13314777.jpeg?auto=compress&cs=tinysrgb&h=350", + label: "Daily" + }, + { + title: "Bush Walks", + description: "Walk the ancient paths with a Zulu tracker. Learn the medicinal flora and read the prints left in the red sand.", + image: "https://images.pexels.com/photos/885013/pexels-photo-885013.jpeg?auto=compress&cs=tinysrgb&h=350", + label: "By request" + }, + { + title: "Cultural Encounters", + description: "Visit a nearby Zulu homestead to hear oral histories, taste amasi and witness beadwork that tells a story.", + image: "https://images.pexels.com/photos/38153685/pexels-photo-38153685.jpeg?auto=compress&cs=tinysrgb&h=350", + label: "Half‑day" + } +] + +export default function SafariExperiencesSection() { + return ( +
+
+
+ + Experiences + +
+

+ The bush is your playground +

+
+ {experiences.map((exp) => ( + +
+ {exp.title} +
+ {exp.label} +
+
+ + {exp.title} + + +

{exp.description}

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