From fa06961a2d79881b650bb448fe6f1d4bd0236b47 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 15:32:46 +0000 Subject: [PATCH 1/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 3d26602..738b9f5 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -27,6 +27,7 @@ export default function ContactPage() { { name: "Services", id: "services" }, { name: "Process", id: "process" }, { name: "For", id: "for" }, + { name: "Pricing", id: "/pricing" }, { name: "About", id: "about" }, { name: "Contact", id: "/contact" } ]} @@ -61,4 +62,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +} -- 2.49.1 From c81f4f5228e943b2cb8ee65ee73a13e3479e5339 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 15:32:46 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 92bcf49..f0c81a9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,6 +34,7 @@ export default function LandingPage() { { name: "Services", id: "services" }, { name: "Process", id: "process" }, { name: "For", id: "for" }, + { name: "Pricing", id: "/pricing" }, { name: "About", id: "about" }, { name: "Contact", id: "/contact" } ]} @@ -278,4 +279,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 9f3708d7b34aa038350efa5477907e38bd684ca1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 15:32:47 +0000 Subject: [PATCH 3/3] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 91 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 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..f9e5f22 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,91 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { DollarSign, Sparkles, Star, Zap, Rocket } from "lucide-react"; + +export default function PricingPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1