From 9ceb134bf9f187a525bfe1a368cf34f3e4cde1e3 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 21:32:12 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4b81272..aee09c2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -37,6 +37,7 @@ export default function LandingPage() { { name: "About", id: "about" }, { name: "Services", id: "features" }, { name: "Portfolio", id: "products" }, + { name: "Pricing", id: "pricing" }, { name: "Testimonials", id: "testimonials" }, { name: "Blog", id: "blog" }, { name: "Contact", id: "contact" } @@ -232,7 +233,7 @@ export default function LandingPage() { columns={[ { items: [ - { label: "Home", href: "#hero" }, + { label: "Home", href: "/" }, { label: "About", href: "#about" }, { label: "Services", href: "#features" }, { label: "Portfolio", href: "#products" } @@ -240,10 +241,10 @@ export default function LandingPage() { }, { items: [ + { label: "Pricing", href: "/pricing" }, { label: "Testimonials", href: "#testimonials" }, { label: "Blog", href: "#blog" }, - { label: "Contact", href: "#contact" }, - { label: "Book Now", href: "#contact" } + { label: "Contact", href: "#contact" } ] }, { @@ -268,4 +269,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 5852bf3a53d063430bfb2bb65566bed4648ad926 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 21:32:12 +0000 Subject: [PATCH 2/2] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 122 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 122 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..8143617 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,122 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { Sparkles } from 'lucide-react'; + +export default function PricingPage() { + return ( + + + +
+ +
+ + +
+ ); +} -- 2.49.1