15 lines
683 B
TypeScript
15 lines
683 B
TypeScript
export default function AboutHero() {
|
|
return (
|
|
<section className="relative py-32 px-4 pt-28 bg-gray-950">
|
|
<div className="absolute inset-0 overflow-hidden">
|
|
<div className="absolute top-0 right-1/4 w-[500px] h-[500px] bg-cyan-500/5 rounded-full blur-3xl" />
|
|
</div>
|
|
<div className="relative z-10 max-w-4xl mx-auto text-center">
|
|
<p className="text-cyan-400 font-medium tracking-widest uppercase text-sm mb-4">SZMYT AI Labs</p>
|
|
<h1 className="text-5xl md:text-6xl font-bold text-white mb-4">O nas</h1>
|
|
<p className="text-gray-400 text-xl max-w-2xl mx-auto">Poznaj zespół za SZMYT AI Labs</p>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|