From c33db967ca9c8f2632aafe60bf2f4706bd5ba927 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 12:41:18 +0000 Subject: [PATCH] Add src/app/testimonials/page.tsx --- src/app/testimonials/page.tsx | 109 ++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 src/app/testimonials/page.tsx diff --git a/src/app/testimonials/page.tsx b/src/app/testimonials/page.tsx new file mode 100644 index 0000000..4fc33dc --- /dev/null +++ b/src/app/testimonials/page.tsx @@ -0,0 +1,109 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { Award } from 'lucide-react'; + +export default function TestimonialsPage() { + return ( + + + +
+ +
+ + +
+ ); +} \ No newline at end of file