This commit is contained in:
Vula Builder
2026-07-26 16:40:57 +00:00
parent 2ad94de0ae
commit 391fa2cf0c
+12
View File
@@ -0,0 +1,12 @@
import Link from "next/link"
export default function HeroSection() {
return (
<section data-vula-section="hero" id="hero" className="relative min-h-[72vh] flex flex-col items-center justify-center px-6 py-24 text-center" style={{ backgroundColor: "#f9f7f4", color: "#211c0d" }}>
<p className="uppercase tracking-[0.1em] text-[12.5px] font-semibold opacity-60 mb-4">{"vaVenda Lodge"}</p>
<h1 className="text-6xl lg:text-7xl font-extrabold tracking-[-0.02em] mb-7 max-w-4xl">{"A boutique lodge in Limpopo offering deep Venda cultural immersion "}<span className="text-[#18181b]">{"combined with."}</span></h1>
<p className="text-lg lg:text-xl max-w-xl mb-10" style={{ color: "#6e6853" }}>{"Professional boutique hotel in South Africa."}</p>
<Link href="/booking" className="inline-block bg-[#18181b] text-white px-8 py-4 text-base font-bold rounded-xl shadow-lg hover:-translate-y-0.5 transition-all duration-200">Book a room</Link>
</section>
)
}