10 lines
292 B
TypeScript
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>
|
|
);
|
|
}
|