import { Cpu, Lock, Sparkles, Zap } from 'lucide-react'
import Image from 'next/image'
export default function FeaturesSection() {
return (
<section className="py-16 md:py-32">
<div className="mx-auto max-w-5xl space-y-12 px-6">
<div className="relative z-10 grid items-center gap-4 md:grid-cols-2 md:gap-12">
<h2 className="text-4xl font-semibold">The Lyra ecosystem brings together our models</h2>
<p className="max-w-sm sm:ml-auto">Empower your team with workflows that adapt to your needs, whether you prefer git synchronization or a AI Agents interface.</p>
</div>
<div className="px-3 pt-3 md:-mx-8">
<div className="aspect-88/36 mask-b-from-75% mask-b-to-95% 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 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>
)
}