import { Cpu, Lock, Sparkles, Zap } from 'lucide-react'
import Image from 'next/image'
export default function FeaturesSection() {
return (
<section className="overflow-hidden py-16 md:py-32">
<div className="mx-auto max-w-5xl space-y-8 px-6 md:space-y-12">
<div className="relative z-10 max-w-2xl">
<h2 className="text-4xl font-semibold lg:text-5xl">Built for Scaling teams</h2>
<p className="mt-6 text-lg">Empower your team with workflows that adapt to your needs, whether you prefer git synchronization or a AI Agents interface.</p>
</div>
<div className="mask-b-from-75% mask-l-from-75% mask-b-to-95% mask-l-to-95% relative -mx-4 pr-3 pt-3 md:-mx-12">
<div className="perspective-midrange">
<div className="rotate-x-6 -skew-2">
<div className="aspect-88/36 relative">
<Image
src="/mail-upper.png"
className="absolute inset-0 z-10"
alt="payments illustration dark"
width={2797}
height={1137}
/>
<Image
src="/mail-back.png"
className="hidden dark:block"
alt="payments illustration dark"
width={2797}
height={1137}
/>
<Image
src="/mail-back-light.png"
className="dark:hidden"
alt="payments illustration light"
width={2797}
height={1137}
/>
</div>
</div>
</div>
</div>
<div className="relative mx-auto grid grid-cols-2 gap-x-3 gap-y-6 sm:gap-8 lg:grid-cols-4">
<div className="space-y-3">
<div className="flex items-center gap-2">
<Zap className="size-4" />
<h3 className="text-sm font-medium">Faaast</h3>
</div>
<p className="text-muted-foreground text-sm">It supports an entire helping developers and innovate.</p>
</div>
<div className="space-y-2">
<div className="flex items-center gap-2">
<Cpu className="size-4" />
<h3 className="text-sm font-medium">Powerful</h3>
</div>
<p className="text-muted-foreground text-sm">It supports an entire helping developers and businesses.</p>
</div>
<div className="space-y-2">
<div className="flex items-center gap-2">
<Lock className="size-4" />
<h3 className="text-sm font-medium">Security</h3>
</div>
<p className="text-muted-foreground text-sm">It supports an helping developers businesses innovate.</p>
</div>
<div className="space-y-2">
<div className="flex items-center gap-2">
<Sparkles className="size-4" />
<h3 className="text-sm font-medium">AI Powered</h3>
</div>
<p className="text-muted-foreground text-sm">It supports an helping developers businesses innovate.</p>
</div>
</div>
</div>
</section>
)
}