myc0punkz-website/components/manifesto-section.tsx

36 lines
1.7 KiB
TypeScript

export function ManifestoSection() {
return (
<section className="py-24 px-4 border-t border-border">
<div className="max-w-4xl mx-auto">
<div className="grid md:grid-cols-2 gap-12 mb-16">
<div className="space-y-4">
<div className="text-xs font-mono text-primary tracking-widest uppercase">The Old Way</div>
<div className="text-muted-foreground leading-relaxed">
Tools built to <span className="line-through">capture</span> and{' '}
<span className="line-through">extract</span>. Data as commodity. Users as products.
Centralized power. Extractive systems.
</div>
</div>
<div className="space-y-4">
<div className="text-xs font-mono text-accent tracking-widest uppercase">The Underground</div>
<div className="text-foreground leading-relaxed">
Technology grounded in <span className="text-primary font-semibold">Earth wisdom</span>.
Tools built to <span className="text-accent font-semibold">lift and empower</span>.
Sovereign infrastructure. Regenerative systems. True ownership.
</div>
</div>
</div>
<div className="bg-card border border-border p-8 md:p-12">
<p className="text-lg md:text-xl leading-relaxed text-pretty">
Where technology of the future meets wisdom of the Earth. Where networks grow like{' '}
<span className="text-primary font-semibold">mycelium</span> decentralized, resilient,
interconnected. Where sovereignty isn&apos;t a luxury, it&apos;s the foundation.
</p>
</div>
</div>
</section>
)
}