'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}
))}
) }