From 2f0adeb83f91bc60785b62df2ed0e3ab4ff06c5f Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sun, 26 Jul 2026 16:40:58 +0000 Subject: [PATCH] Deploy --- .../sections/VendaExperiencesSection.tsx | 107 ++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 src/components/sections/VendaExperiencesSection.tsx diff --git a/src/components/sections/VendaExperiencesSection.tsx b/src/components/sections/VendaExperiencesSection.tsx new file mode 100644 index 0000000..c16615c --- /dev/null +++ b/src/components/sections/VendaExperiencesSection.tsx @@ -0,0 +1,107 @@ +'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 +

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