page.tsx 774 B

1234567891011121314151617181920212223
  1. import Testimonials from '@/components/layout/Testimonials';
  2. export const metadata = {
  3. title: 'Testimonials',
  4. description: 'Read what our customers are saying about us. Explore testimonials and see why people love our products and services.',
  5. };
  6. export default function TestimonialsPage() {
  7. return <>
  8. <section className="section">
  9. <div className="container">
  10. <div className="section-header">
  11. <h2 className="section-title section-title-lg">Our Wall Of Love</h2>
  12. <p className="section-description">
  13. Reviews and feedback from our satisfied users who have experienced our products.
  14. </p>
  15. </div>
  16. <Testimonials />
  17. </div>
  18. </section>
  19. </>;
  20. }