From b67fd3b932f95c8d3ba90acf2c35fc7618052f45 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 13:02:44 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index b1fdfa5..7bcc582 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,6 +33,7 @@ export default function LandingPage() { navItems={[ { name: "Home", id: "hero" }, { name: "Features", id: "features" }, + { name: "Pricing", id: "/pricing" }, { name: "Testimonials", id: "testimonials" }, { name: "Contact", id: "contact" }, ]} -- 2.49.1 From 40bc829c5dada1325907992366c7032ee06f6167 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 13:02:44 +0000 Subject: [PATCH 2/2] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 77 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 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..b4c7401 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,77 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function PricingPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1