This commit is contained in:
Vula Builder
2026-06-23 08:38:44 +00:00
parent 935f823a73
commit 7673b14343
@@ -0,0 +1,46 @@
'use client'
export default function BlackAndWhiteEthosSection() {
return (
<section data-vula-section="blackandwhiteethos" id="ethos" className="bg-[#18181b] text-white py-40 px-4">
<div className="max-w-3xl mx-auto text-center">
<h2 className="text-5xl md:text-7xl font-black uppercase tracking-tight mb-8">
Black &amp; White
</h2>
<p className="text-2xl font-light mb-12">It&apos;s not just a palette. It&apos;s a statement.</p>
<div className="space-y-6 text-left md:text-center max-w-2xl mx-auto">
<p className="text-lg leading-relaxed">
S.A.W lives in black and white because clarity hits harder. No noise, no distractions
just pure, uncompromising design. For Generation Z in South Africa, that simplicity is rebellion.
</p>
<p className="text-lg leading-relaxed">
Every T-shirt we drop is a canvas for bold lines and honest cuts. We&apos;re done with overhyped
brands that charge a bag for mid. Our threads are built different affordable, premium, and
iced out with minimalism.
</p>
<p className="text-lg leading-relaxed">
From the streets of Mzansi to your hood, black and white is the code. It&apos;s timeless. It&apos;s ours.
</p>
</div>
<div className="mt-16 grid grid-cols-2 md:grid-cols-4 gap-8 max-w-3xl mx-auto border-t border-gray-700 pt-12">
<div className="text-center">
<p className="text-4xl font-black">3</p>
<p className="text-sm uppercase tracking-widest text-gray-400 mt-1">Shades</p>
</div>
<div className="text-center">
<p className="text-4xl font-black">1</p>
<p className="text-sm uppercase tracking-widest text-gray-400 mt-1">Fit</p>
</div>
<div className="text-center">
<p className="text-4xl font-black">2024</p>
<p className="text-sm uppercase tracking-widest text-gray-400 mt-1">Born</p>
</div>
<div className="text-center">
<p className="text-4xl font-black">19</p>
<p className="text-sm uppercase tracking-widest text-gray-400 mt-1">Founder Age</p>
</div>
</div>
</div>
</section>
)
}