This commit is contained in:
Vula Builder
2026-07-28 13:27:27 +00:00
parent 85638c58f3
commit 5fcadf158e
@@ -0,0 +1,36 @@
import Button from '@/components/ui/Button'
import Link from 'next/link'
export default function ShopTheVaultCTASection() {
return (
<section
id="shop-the-vault"
data-vula-section="shopthevaultcta"
className="bg-[#0f0f17] py-24 lg:py-32 px-4 border-t border-[#303040]"
>
<div className="max-w-4xl mx-auto text-center">
<p className="text-xs uppercase tracking-[0.2em] text-[#c0c0c0] mb-6">
Sandton / Rosebank
</p>
<h2 className="font-serif text-3xl lg:text-5xl text-[#e7e7ee] leading-tight mb-8">
Discover the rarest drops,
<br />
<span className="italic text-[#c0c0c0]">curated for you</span>
</h2>
<p className="text-[#a0a0b0] max-w-2xl mx-auto mb-10 text-sm leading-relaxed">
Limited-edition Nike, Adidas, and exclusive SA collaborations.
Each pair authenticated before it reaches your doorstep.
</p>
<Link href="/products">
<Button
variant="default"
size="lg"
className="bg-[#c0c0c0] text-[#0f0f17] hover:bg-[#d0d0d0] px-10 py-5 text-sm uppercase tracking-widest font-semibold"
>
Enter The Vault
</Button>
</Link>
</div>
</section>
)
}