import { Cpu, Lock, Sparkles, Zap } from "lucide-react";
export default function ContentSection() {
return (
<section className="py-16 md:py-32">
<div className="mx-auto max-w-5xl space-y-8 px-6 md:space-y-12">
<div className="mx-auto max-w-xl space-y-6 text-center md:space-y-12">
<h2 className="text-balance text-4xl font-medium lg:text-5xl">
The Lyra ecosystem brings together our models, products and
platforms.
</h2>
<p>
Lyra is evolving to be more than just the models. It supports an
entire ecosystem — from products to the APIs and platforms helping
developers and businesses innovate.
</p>
</div>
<img
className="rounded-(--radius) grayscale"
src="https://cdn.21st.dev/assets/mirror/63/6348b5fece36bb3990dcc60027acf1d7e1552bfc65939433df93c6f9d02bf82a.jpg"
alt="team image"
height=""
width=""
loading="lazy"
/>
<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>
);
}