From 10759d8d50890164deaaa91908d6b37c1c0ab8b3 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 5 May 2026 23:46:37 +0000 Subject: [PATCH] Add src/app/testimonials/page.tsx --- src/app/testimonials/page.tsx | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 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..e3aa933 --- /dev/null +++ b/src/app/testimonials/page.tsx @@ -0,0 +1,30 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function TestimonialsPage() { + return ( + + + + + + + + ); +} \ No newline at end of file