This commit is contained in:
Vula Builder
2026-07-25 11:17:58 +00:00
parent aa97309d4b
commit 1da798c5f9
@@ -0,0 +1,42 @@
import Image from "next/image"
export default function RootsOfMasaiSection() {
return (
<section data-vula-section="rootsofmasai" id="roots-of-masai" className="py-20 px-4 bg-white">
<div className="max-w-6xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
<div className="relative h-80 md:h-96 rounded-2xl overflow-hidden">
<Image
src="https://images.pexels.com/photos/35856106/pexels-photo-35856106.jpeg?auto=compress&cs=tinysrgb&h=350"
alt="Maasai elder in traditional attire"
fill
className="object-cover"
sizes="(max-width: 768px) 100vw, 50vw"
/>
</div>
<div>
<h2 className="text-4xl font-bold text-[#2C1810] mb-6">
Rooted in Maasai Heritage
</h2>
<p className="text-lg text-[#2C1810]/80 mb-4">
Masai Suites was born from a deep respect for the land and the people
who have called it home for centuries. Our lodge sits on a stretch of
savanna where the Maasai have grazed cattle and held ceremonies
under the same acacia trees that shade our verandas.
</p>
<p className="text-lg text-[#2C1810]/80 mb-4">
We work directly with local Maasai artisans who craft the furniture,
textiles, and decor that fill every room. Each piece tells a story
a pattern first drawn in the sand, a bead colour chosen for its
meaning, a carving passed down through generations.
</p>
<p className="text-lg text-[#2C1810]/80">
Sustainability isn't a tagline here; it is the foundation. Solar
energy, rainwater harvesting, and a zero-waste kitchen are as
natural as the morning breeze. When you stay with us, you become
part of a circle that honours the earth and uplifts the community.
</p>
</div>
</div>
</section>
)
}