From 5d18014fca757e4f60c77d7d8633de60865aa4b0 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 14 May 2026 23:21:07 +0000 Subject: [PATCH] Add src/app/testimonials/page.tsx --- src/app/testimonials/page.tsx | 39 +++++++++++++++++++++++++++++++++++ 1 file changed, 39 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..c5dd5e1 --- /dev/null +++ b/src/app/testimonials/page.tsx @@ -0,0 +1,39 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +export default function TestimonialsPage() { + return ( + + + + + + ); +} \ No newline at end of file