From 8dcc131c878787d0918b9232e962959adc9550d8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 08:42:15 +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 f0c110c..7286ca2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -35,6 +35,7 @@ export default function LandingPage() { { name: "Vault", id: "features" }, { name: "Checklist", id: "checklist" }, { name: "Community", id: "community" }, + { name: "Pricing", id: "/pricing" }, ]} brandName="HW Tracker" /> -- 2.49.1 From 28670178a47771225bc8bec6e2c67a1a59990a7a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 08:42:15 +0000 Subject: [PATCH 2/2] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 66 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 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..87f1e7f --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,66 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function PricingPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1