From 5be9ab24e093705bad6145e716753a9639b8bffd Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 25 Jul 2026 13:58:35 +0000 Subject: [PATCH] Deploy --- .../sections/MaasaiExperiencesSection.tsx | 79 +++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 src/components/sections/MaasaiExperiencesSection.tsx diff --git a/src/components/sections/MaasaiExperiencesSection.tsx b/src/components/sections/MaasaiExperiencesSection.tsx new file mode 100644 index 0000000..ddf3af7 --- /dev/null +++ b/src/components/sections/MaasaiExperiencesSection.tsx @@ -0,0 +1,79 @@ +'use client' + +import { Card } from "@/components/ui/Card" +import Button from "@/components/ui/Button" +import Image from "next/image" +import Link from "next/link" + +const experiences = [ + { + id: "safari-walk", + title: "Guided Safari Walk", + description: "Track lion prides and elephant herds with a KPSGA-certified guide — just you and the wild.", + image: "https://images.pexels.com/photos/2854553/pexels-photo-2854553.jpeg?auto=compress&cs=tinysrgb&h=350", + price: "KSh 8,500 per person", + }, + { + id: "village-visit", + title: "Maasai Village Immersion", + description: "Spend a morning with a boma: learn beadwork, milking, and the art of jumping dance.", + image: "https://images.pexels.com/photos/28933066/pexels-photo-28933066.jpeg?auto=compress&cs=tinysrgb&h=350", + price: "KSh 4,500 per person", + }, + { + id: "sundowner-dinner", + title: "Sundowner Bush Dinner", + description: "A private four-course feast on the escarpment — lanterns, gin tonics, and a horizon of fire.", + image: "https://images.pexels.com/photos/7946907/pexels-photo-7946907.jpeg?auto=compress&cs=tinysrgb&h=350", + price: "KSh 12,000 per couple", + }, +] + +export default function MaasaiExperiencesSection() { + return ( +
+
+

+ Beyond the Suite +

+

+ Curated adventures that bring the Mara into your soul — from dawn tracking to starlit feasts. +

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

{exp.title}

+

{exp.description}

+
+ {exp.price} + + + +
+
+
+ ))} +
+
+ + + +
+
+
+ ) +} \ No newline at end of file