From 1255a7af146ce2c0c121984c3356540159812011 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 13 May 2026 11:25:34 +0000 Subject: [PATCH] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 47 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 src/app/pricing/page.tsx diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..54a87f8 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,47 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function PricingPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file