'use client' import Link from "next/link" import Image from "next/image" import Button from "@/components/ui/Button" import { Compass, Music, Star, UtensilsCrossed } from 'lucide-react' const activities = [ { title: "Traditional Dance & Drumming", description: "Join local Venda dancers in a rhythmic evening under the stars. Learn the tshikona reed dance or beat the djembe around a fire.", icon: Music, image: "https://images.pexels.com/photos/36019668/pexels-photo-36019668.jpeg?auto=compress&cs=tinysrgb&h=350", }, { title: "Village Walk & Storytelling", description: "Walk through the neighbouring Makhado village with an elder guide who shares oral histories, folklore, and the meaning behind Venda symbols.", icon: Compass, image: "https://images.pexels.com/photos/30767896/pexels-photo-30767896.jpeg?auto=compress&cs=tinysrgb&h=350", }, { title: "Home-Cooked Venda Cuisine", description: "Taste dishes passed down through generations: morogo with pap, tshiovha (pumpkin leaves), and freshly brewed mageu. Cook alongside our chefs.", icon: UtensilsCrossed, image: "https://images.pexels.com/photos/8168571/pexels-photo-8168571.png?auto=compress&cs=tinysrgb&h=350", }, { title: "Craft Workshops", description: "Try your hand at clay pottery, basket weaving, or beadwork with Venda artisans. Take home your own creation as a souvenir.", icon: Star, image: "https://images.pexels.com/photos/1973889/pexels-photo-1973889.jpeg?auto=compress&cs=tinysrgb&h=350", }, ] export default function VendaExperiencesSection() { return (
Cultural Immersion

Beyond the Lodge

Step into daily Venda life — each experience is led by community members who open their homes and their hearts.

{activities.map((activity, i) => { const Icon = activity.icon return (
{activity.title}

{activity.title}

{activity.description}

) })}
{/* Contact CTA */}

All experiences are seasonal — contact us to plan your itinerary.

+27 15 001 2345  ·  info@vavendalodge.co.za

) }