19 lines
1015 B
TypeScript
19 lines
1015 B
TypeScript
export default function OfertaHero() {
|
|
return (
|
|
<section className="relative py-32 px-4 pt-28 bg-gray-950">
|
|
<div className="absolute inset-0 overflow-hidden">
|
|
<div className="absolute inset-0 animate-gradient-bg" style={{ background: "linear-gradient(270deg, rgba(6,182,212,0.1), transparent 50%, rgba(139,92,246,0.07))" }} />
|
|
<div className="absolute top-0 left-1/4 w-[500px] h-[500px] bg-cyan-500/5 rounded-full blur-3xl" />
|
|
<div className="absolute top-1/3 right-1/4 w-[300px] h-[300px] bg-purple-500/5 rounded-full blur-2xl" />
|
|
</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">Oferta</h1>
|
|
<p className="text-gray-400 text-xl max-w-2xl mx-auto">
|
|
Kompleksowe rozwiązania AI skrojone pod Twoją firmę
|
|
</p>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|