import { Card, CardContent, CardHeader } from "@/components/ui/card";
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
export default function Testimonials() {
return (
<section className="py-16 md:py-32">
<div className="mx-auto max-w-6xl space-y-8 px-6 md:space-y-16">
<div className="relative z-10 mx-auto max-w-xl space-y-6 text-center md:space-y-12">
<h2 className="text-4xl font-medium lg:text-5xl">
Build by makers, loved by thousand developers
</h2>
<p>
Gemini is evolving to be more than just the models. It supports an
entire to the APIs and platforms helping developers and businesses
innovate.
</p>
</div>
<div className="grid gap-4 [--color-card:var(--color-muted)] *:border-none *:shadow-none sm:grid-cols-2 md:grid-cols-4 lg:grid-rows-2 dark:[--color-muted:var(--color-zinc-900)]">
<Card className="grid grid-rows-[auto_1fr] gap-8 sm:col-span-2 sm:p-6 lg:row-span-2">
<CardHeader>
<img
className="h-6 w-fit dark:invert"
src="https://cdn.21st.dev/assets/localized/522a66b26761c227eba71f5e8ab81845b5ec0492f1318d4dc4b9fec27dcab507.svg"
alt="Nike Logo"
height="24"
width="auto"
/>
</CardHeader>
<CardContent>
<blockquote className="grid h-full grid-rows-[1fr_auto] gap-6">
<p className="text-xl font-medium">
Tailus has transformed the way I develop web applications.
Their extensive collection of UI components, blocks, and
templates has significantly accelerated my workflow. The
flexibility to customize every aspect allows me to create
unique user experiences. Tailus is a game-changer for modern
web development
</p>
<div className="grid grid-cols-[auto_1fr] items-center gap-3">
<Avatar className="size-12">
<AvatarImage
src="https://cdn.21st.dev/assets/localized/76d20be6a0c1c927b2fe43655312e66fa016b44858e11ef3de8c21eabb33bf3c.webp"
alt="Shekinah Tshiokufila"
height="400"
width="400"
loading="lazy"
/>
<AvatarFallback>ST</AvatarFallback>
</Avatar>
<div>
<cite className="text-sm font-medium">
Shekinah Tshiokufila
</cite>
<span className="text-muted-foreground block text-sm">
Software Ingineer
</span>
</div>
</div>
</blockquote>
</CardContent>
</Card>
<Card className="md:col-span-2">
<CardContent className="h-full pt-6">
<blockquote className="grid h-full grid-rows-[1fr_auto] gap-6">
<p className="text-xl font-medium">
Tailus is really extraordinary and very practical, no need to
break your head. A real gold mine.
</p>
<div className="grid grid-cols-[auto_1fr] items-center gap-3">
<Avatar className="size-12">
<AvatarImage
src="https://cdn.21st.dev/assets/localized/553d94de6d2a504679e4abce1d0c01bd278d93f13c5173b0eef6cd2009cb119d.webp"
alt="Jonathan Yombo"
height="400"
width="400"
loading="lazy"
/>
<AvatarFallback>JY</AvatarFallback>
</Avatar>
<div>
<cite className="text-sm font-medium">Jonathan Yombo</cite>
<span className="text-muted-foreground block text-sm">
Software Ingineer
</span>
</div>
</div>
</blockquote>
</CardContent>
</Card>
<Card>
<CardContent className="h-full pt-6">
<blockquote className="grid h-full grid-rows-[1fr_auto] gap-6">
<p>
Great work on tailfolio template. This is one of the best
personal website that I have seen so far!
</p>
<div className="grid items-center gap-3 [grid-template-columns:auto_1fr]">
<Avatar className="size-12">
<AvatarImage
src="https://cdn.21st.dev/assets/localized/f23d8f7ae5c4099156b2557967175f3988951267e12d9c791a6a3f484e18130e.webp"
alt="Yucel Faruksahan"
height="400"
width="400"
loading="lazy"
/>
<AvatarFallback>YF</AvatarFallback>
</Avatar>
<div>
<cite className="text-sm font-medium">
Yucel Faruksahan
</cite>
<span className="text-muted-foreground block text-sm">
Creator, Tailkits
</span>
</div>
</div>
</blockquote>
</CardContent>
</Card>
<Card className="card variant-mixed">
<CardContent className="h-full pt-6">
<blockquote className="grid h-full grid-rows-[1fr_auto] gap-6">
<p>
Great work on tailfolio template. This is one of the best
personal website that I have seen so far!
</p>
<div className="grid grid-cols-[auto_1fr] gap-3">
<Avatar className="size-12">
<AvatarImage
src="https://cdn.21st.dev/assets/localized/2b4e88588fe442ae079206f4af7748e3b1ec08b76248c53b03c72ae433e89431.webp"
alt="Rodrigo Aguilar"
height="400"
width="400"
loading="lazy"
/>
<AvatarFallback>YF</AvatarFallback>
</Avatar>
<div>
<p className="text-sm font-medium">Rodrigo Aguilar</p>
<span className="text-muted-foreground block text-sm">
Creator, TailwindAwesome
</span>
</div>
</div>
</blockquote>
</CardContent>
</Card>
</div>
</div>
</section>
);
}