From cba0107a32bf1f4fa746b8c998289c3ef4fe68bb Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 16:53:33 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f5ba163..2fc0e10 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -9,7 +9,7 @@ const inter = Inter({ }); export const metadata: Metadata = { - title: "DigiBridged", description: "Digital transformation for local enterprises"}; + title: "DigiBridged", description: "Your Business, Digitally Bridged"}; export default function RootLayout({ children, -- 2.49.1 From 0eb61cb9297a72d4a060120d758f90c2209c3fe1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 16:53:34 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index e98ccd6..28c991a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,6 +31,7 @@ export default function DigiBridgedLanding() { navItems={[ { name: "Solutions", id: "features" }, { name: "Results", id: "metrics" }, + { name: "Pricing", id: "/pricing" }, { name: "About", id: "about" }, { name: "Contact", id: "contact" } ]} -- 2.49.1 From b92217b87248eb72365700e90ff01ef8cd2aeef4 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 16:53:34 +0000 Subject: [PATCH 3/3] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 97 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 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..6408c0a --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,97 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import PricingCardNine from "@/components/sections/pricing/PricingCardNine"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { Zap, Linkedin, Twitter } from "lucide-react"; + +export default function PricingPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1