From b3aea5e514ebf7297cdd09abadd8ff5f105c5f39 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 18:20:59 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7f72c59..631fd0e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,7 +33,8 @@ export default function LandingPage() { navItems={[ { name: "Services", id: "services" }, { name: "Portfolio", id: "portfolio" }, - { name: "About", id: "about" } + { name: "About", id: "about" }, + { name: "Pricing", id: "pricing" } ]} button={{ text: "Get Started", href: "#contact" }} /> @@ -235,6 +236,7 @@ export default function LandingPage() { { label: "Home", href: "/" }, { label: "Services", href: "#services" }, { label: "Portfolio", href: "#portfolio" }, + { label: "Pricing", href: "/pricing" }, { label: "About", href: "#about" } ] }, @@ -261,4 +263,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file From d512f27da43409407caf339829ed79c974861747 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 18:21:00 +0000 Subject: [PATCH 2/2] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 138 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 138 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..fd3e441 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,138 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { CheckCircle, Sparkles } from 'lucide-react'; + +export default function PricingPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file