From 6ad23a109372370595fd15b3e72209c54679fe1e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 11:15:39 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4bef3a7..dc67a6e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,7 +34,8 @@ export default function LandingPage() { { name: "About", id: "about" }, { name: "Results", id: "metrics" }, { name: "Works", id: "works" }, - { name: "Testimonials", id: "testimonials" } + { name: "Testimonials", id: "testimonials" }, + { name: "Pricing", id: "/pricing" } ]} button={{ text: "Get Started", href: "#contact" @@ -321,7 +322,7 @@ export default function LandingPage() { { label: "About Us", href: "#about" }, { label: "Our Work", href: "#works" }, { label: "Testimonials", href: "#testimonials" }, - { label: "Blog", href: "#" } + { label: "Pricing", href: "/pricing" } ] }, { -- 2.49.1 From 430f530c7654aa437b169777b49082c10022dd46 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 11:15:40 +0000 Subject: [PATCH 2/2] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 125 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 125 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..e298e43 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,125 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Rocket, Check } from "lucide-react"; + +export default function PricingPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1