This commit is contained in:
Vula Builder
2026-08-01 16:13:30 +00:00
parent 2707015ffa
commit 373551dddf
+23
View File
@@ -0,0 +1,23 @@
import Image from "next/image"
import Link from "next/link"
export default function HeroSection() {
const imageUrl = "https://images.pexels.com/photos/25568754/pexels-photo-25568754.jpeg?auto=compress&cs=tinysrgb&h=650&w=940"
return (
<section data-vula-section="hero" id="hero" className="relative min-h-[88vh] text-white">
{imageUrl ? (
<Image src={imageUrl} alt="Ukaya Home" fill className="absolute inset-0 object-cover" sizes="100vw" priority />
) : (
<div className="absolute inset-0" style={{ background: "linear-gradient(135deg, #6b8e23, #ea580c)" }} />
)}
<div className="absolute inset-0 bg-gradient-to-t from-black/60 via-black/30 to-black/10" />
<div className="relative z-10 flex flex-col items-center justify-center min-h-[88vh] text-center px-6">
<p className="uppercase tracking-[0.1em] text-[12.5px] font-semibold text-white/70 mb-4">{"Ukaya Home"}</p>
<h1 className="text-5xl lg:text-6xl font-extrabold tracking-[-0.02em] mb-6 max-w-4xl">{"A Durban-based homeware brand offering genuinely handcrafted cushions, "}<span className="text-[#36454F]">{"throws, and."}</span></h1>
<p className="text-lg lg:text-xl text-white/80 max-w-2xl mb-9">{"Professional online handcrafted homeware store in South Africa."}</p>
<Link href="/products" className="inline-block bg-[#36454F] text-white px-8 py-4 text-base font-bold rounded-xl shadow-lg hover:-translate-y-0.5 transition-all duration-200">Shop now</Link>
</div>
</section>
)
}