This commit is contained in:
Vula Builder
2026-06-23 08:47:40 +00:00
parent 3fa568bc98
commit b10a926345
@@ -0,0 +1,29 @@
import React from 'react'
import Link from 'next/link'
import Button from '@/components/ui/Button'
export default function ShopNowCTASection() {
return (
<section data-vula-section="shopnowcta" id="shop-now" className="w-full bg-[#18181b] py-24 lg:py-32">
<div className="mx-auto max-w-3xl px-4 text-center">
<h2 className="text-4xl font-black tracking-tight text-white sm:text-5xl lg:text-6xl">
Own the Streets
</h2>
<p className="mt-4 text-lg text-neutral-400">
Every tee is designed with purpose. No logos, no noise just clean, bold statements.
</p>
<div className="mt-10 flex justify-center">
<Link href="/products">
<Button
variant="default"
size="lg"
className="bg-[#dc2626] text-white hover:bg-[#b91c1c] transition-all duration-200"
>
Shop Now
</Button>
</Link>
</div>
</div>
</section>
)
}