24 lines
853 B
TypeScript
24 lines
853 B
TypeScript
export function AboutSection() {
|
|
return (
|
|
<section id="about" className="py-32 px-8">
|
|
<div className="max-w-5xl mx-auto text-center">
|
|
<span className="uppercase tracking-[0.3em] text-primary mb-8 block text-sm font-semibold">
|
|
The Mission
|
|
</span>
|
|
|
|
<h2 className="text-4xl md:text-5xl font-black mb-10 leading-tight">
|
|
“Fix the money, fix the world.”
|
|
</h2>
|
|
|
|
<p className="text-2xl text-on-surface-variant font-light leading-relaxed mb-12">
|
|
We help people in Belgium understand and adopt Bitcoin through
|
|
education, meetups, and community. We are not a company, but a
|
|
sovereign network of individuals building a sounder future.
|
|
</p>
|
|
|
|
<div className="w-24 h-1 bg-primary mx-auto opacity-50" />
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|