it/web/components/Testimonials.tsx
2025-10-25 20:37:00 +02:00

10 lines
292 B
TypeScript

// path: components/Testimonials.tsx
export default function Testimonials() {
return (
<section className="py-16 text-center">
<h2 className="text-2xl font-semibold mb-4">What clients say</h2>
<p className="text-gray-600">Testimonials coming soon.</p>
</section>
);
}