'use client'
export default function About() {
return (
<section className="py-20 px-4 relative z-10">
<div className="max-w-3xl mx-auto">
<h2 className="text-3xl font-bold text-white mb-6 text-center">About</h2>
<div className="bg-card border border-primary rounded-lg p-6 md:p-8 glow-blue scroll-reveal">
<p className="text-muted leading-relaxed">
GeekBrain.io is a venture capital fund focused on backing technical founders building transformative technologies. We believe the best companies start with builders who understand the problem they're solving. Our mission is to provide the capital, network, and strategic support these founders need to turn bold ideas into reality.
</p>
</div>
</div>
</section>
)
}