diff --git a/src/components/sections/VendaCulturalImmersionSection.tsx b/src/components/sections/VendaCulturalImmersionSection.tsx new file mode 100644 index 0000000..74e60f2 --- /dev/null +++ b/src/components/sections/VendaCulturalImmersionSection.tsx @@ -0,0 +1,53 @@ +import Image from "next/image" + +export default function VendaCulturalImmersionSection() { + const experiences = [ + { + title: "Tshigombela Dance Evenings", + description: "Feel the rhythm of the Venda people as dancers in beaded skirts and ankle rattles tell stories of harvest, courtship, and ancestors under the starlit Soutpansberg sky.", + image: "https://images.pexels.com/photos/36019668/pexels-photo-36019668.jpeg?auto=compress&cs=tinysrgb&h=350" + }, + { + title: "Pottery with Local Artisans", + description: "Sit at the wheel alongside master potters from nearby villages, shaping clay fired in traditional kilns. Take home a vessel marked with the same ochre earth that colours the Limpopo landscape.", + image: "https://images.pexels.com/photos/36019668/pexels-photo-36019668.jpeg?auto=compress&cs=tinysrgb&h=350" + }, + { + title: "Sacred Sites Walk", + description: "Walk to Lake Fundudzi, where the water lies still and the ancestors are said to speak through the reeds. Our guide shares oral histories passed down over ten generations.", + image: "https://images.pexels.com/photos/36019668/pexels-photo-36019668.jpeg?auto=compress&cs=tinysrgb&h=350" + } + ] + + return ( +
+
+

+ Experiences that stay with you +

+

+ Every activity at vaVenda Lodge is a doorway into the living culture of the Venda people. Handpicked for depth, not spectacle. +

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

{exp.title}

+

{exp.description}

+
+
+ ))} +
+
+
+ ) +}