This commit is contained in:
Vula Builder
2026-07-14 17:42:07 +00:00
parent 362775c37a
commit 5dc2cdd618
@@ -0,0 +1,42 @@
import Image from 'next/image'
import Button from '@/components/ui/Button'
export default function CapeDutchHomesteadHeroSection() {
return (
<section data-vula-section="capedutchhomesteadhero" id="hero" className="relative min-h-screen flex items-center justify-center overflow-hidden">
{/* Background image */}
<div className="absolute inset-0">
<Image
src="https://images.pexels.com/photos/38201182/pexels-photo-38201182.jpeg?auto=compress&cs=tinysrgb&h=650&w=940"
alt="Whitewashed Cape Dutch homestead with fruit trees in bloom"
fill
sizes="100vw"
className="object-cover"
priority
/>
</div>
{/* Overlay */}
<div className="absolute inset-0 bg-[#2c331f]/60" />
{/* Content */}
<div className="relative z-10 text-center text-white px-6 max-w-3xl">
<h1 className="text-4xl md:text-6xl font-bold leading-tight mb-6">
Baked before sunrise, gone by noon.
</h1>
<p className="text-lg md:text-xl mb-8 text-[#f4f5f2] opacity-90">
Welcome to Die Opstal a restored Cape Dutch homestead on the Franschhoek wine route.
</p>
<Button size="lg" className="bg-[#6b8e23] hover:bg-[#5a7a1d] text-white rounded-full px-10 py-4 text-lg">
<a href="#rooms">Explore Our Farmstay</a>
</Button>
</div>
{/* Floating chip card */}
<div className="absolute bottom-8 right-8 bg-white rounded-[22px] shadow-2xl p-5 max-w-[220px]">
<p className="text-sm font-semibold text-[#36454F]">Fresh from the farm</p>
<p className="text-xs text-[#2c331f] mt-1">Free-range eggs and orchard fruit every morning.</p>
</div>
</section>
)
}