it/web/components/Testimonials.tsx
2025-10-25 21:14:15 +02:00

13 lines
528 B
TypeScript

export default function Testimonials() {
return (
<section className="relative py-24 bg-gradient-to-b from-neutral-50 via-white to-neutral-100 dark:from-neutral-950 dark:via-neutral-900 dark:to-neutral-950 text-center">
<h2 className="text-3xl font-bold tracking-tight bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent">
What clients say
</h2>
<p className="mt-6 text-neutral-600 dark:text-neutral-300">
Testimonials coming soon.
</p>
</section>
);
}