From 8a6e676372cbe66b0cdb07e2774ca79c68b315bc Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 1 May 2026 05:43:17 +0000 Subject: [PATCH] Add src/app/testimonials/page.tsx --- src/app/testimonials/page.tsx | 52 +++++++++++++++++++++++++++++++++++ 1 file changed, 52 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..d1d7a31 --- /dev/null +++ b/src/app/testimonials/page.tsx @@ -0,0 +1,52 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function TestimonialsPage() { + return ( + + + + + + + + ); +} \ No newline at end of file