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" }, ]} 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