From df6c627f419023908c9e1e830e3e2273b1173005 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 3 May 2026 18:24:18 +0000 Subject: [PATCH] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 68 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 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..67157b3 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,68 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; + +export default function PricingPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file