This commit is contained in:
Vula Builder
2026-07-15 09:25:26 +00:00
parent b72c8d81fb
commit 7961b0a772
@@ -0,0 +1,30 @@
import Image from 'next/image'
export default function IndabaStorySection() {
return (
<section data-vula-section="indabastory" id="indaba-story" className="py-24 bg-white">
<div className="max-w-7xl mx-auto px-4 grid md:grid-cols-2 gap-12 items-center">
<div className="relative h-[400px] md:h-[500px] rounded-2xl overflow-hidden shadow-xl">
<Image
src="https://images.pexels.com/photos/3844917/pexels-photo-3844917.jpeg?auto=compress&cs=tinysrgb&h=350"
alt="Zulu Lodge heritage — a traditional kraal against the bush"
fill
sizes="(max-width: 768px) 100vw, 50vw"
className="object-cover"
/>
</div>
<div className="space-y-6">
<h2 className="text-3xl md:text-4xl font-bold text-[#211c0d]">
Indaba The Story of Zulu Lodge
</h2>
<p className="text-lg text-[#211c0d]/70 leading-relaxed">
Our lodge was born from a family&apos;s deep reverence for the Zulu Kingdom. In 2004, the Ndlovu clan opened their homestead to a handful of travellers, sharing stories around the fire and teaching the art of tracking under the Southern Cross. Today, that same spirit of <em className="italic text-[#d4af37]">ubuntu</em> &ldquo;I am because we are&rdquo; guides every welcome and every safari.
</p>
<p className="text-lg text-[#211c0d]/70 leading-relaxed">
The lodge sits on 2 500 hectares of private game reserve, where white rhino and giraffe roam freely. Each suite is named after a Zulu proverb, and the thatched boma echoes with the hum of marimba and the crackle of cedar logs. We don&apos;t just offer luxury bush accommodation we invite you into our living heritage.
</p>
</div>
</div>
</section>
)
}