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" /> 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