sztucznainteligencjadlafirm/components/WhyUs.tsx
Adrian Miesikowski a10d92abac first commit
2026-02-10 13:34:42 +01:00

36 lines
1.6 KiB
TypeScript

import ScrollReveal from "@/components/ScrollReveal";
export default function WhyUs() {
const reasons = [
"Dedykowane rozwiązania dla każdej firmy — nikt nie dostanie tego samego produktu.",
"Wsparcie techniczne i merytoryczne na każdym etapie współpracy.",
"Sprawdzone technologie AI wdrożone w rzeczywistych biznesach.",
];
return (
<section className="py-20 px-4 bg-gray-950">
<div className="max-w-4xl mx-auto">
<ScrollReveal>
<div className="text-center mb-14">
<h2 className="text-4xl font-bold text-white mb-4">Dlaczego SZMYT AI Labs</h2>
</div>
</ScrollReveal>
<div className="flex flex-col gap-6">
{reasons.map((reason, i) => (
<ScrollReveal key={i} delay={i * 150}>
<div className="bg-gray-800 border border-gray-700 rounded-xl p-6 border-glow-left flex items-start gap-4 cursor-pointer hover:-translate-y-1 hover:shadow-[0_8px_30px_rgb(6,182,212,0.3)] transition-all duration-300 group">
<div className="w-8 h-8 rounded-full bg-cyan-500/20 border border-cyan-500/50 flex items-center justify-center flex-shrink-0 mt-0.5" aria-hidden="true">
<svg className="w-4 h-4 text-cyan-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M5 13l4 4L19 7" />
</svg>
</div>
<p className="text-gray-200 text-lg leading-relaxed">{reason}</p>
</div>
</ScrollReveal>
))}
</div>
</div>
</section>
);
}