From f4e511fb13b00c5794fc64ee240eab5aa94ae0ce Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:05:50 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ca18629..36cf608 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterCard from "@/components/sections/footer/FooterCard"; -import { Zap, Shield, Gauge, Layers, Globe, Search, TrendingUp, BarChart3, GitBranch, Linkedin, Twitter } from "lucide-react"; +import { Zap, Shield, Gauge, Layers, Globe, Search, TrendingUp, BarChart3, GitBranch, Linkedin, Twitter, Mail } from "lucide-react"; export default function DigiBridgedLanding() { return ( @@ -49,7 +49,7 @@ export default function DigiBridgedLanding() { imageAlt="DigiBridged digital platform dashboard" mediaAnimation="slide-up" buttons={[ - { text: "Schedule a Strategic Audit", href: "/book-meeting" } + { text: "Schedule a Strategic Audit", onClick: () => { const mailtoLink = document.createElement('a'); mailtoLink.href = 'mailto:hello@digibridged.com?subject=Schedule%20a%20Strategic%20Audit'; mailtoLink.click(); } } ]} buttonAnimation="blur-reveal" testimonials={[ @@ -179,7 +179,7 @@ export default function DigiBridgedLanding() { title="Let's Build Your Digital Advantage" description="Your business deserves a partner who understands both traditional enterprise needs and modern digital strategy. Schedule a strategic audit to discover how DigiBridged can unlock measurable growth." buttons={[ - { text: "Schedule Audit", href: "/book-meeting" }, + { text: "Schedule Audit", onClick: () => { const mailtoLink = document.createElement('a'); mailtoLink.href = 'mailto:hello@digibridged.com?subject=Schedule%20Audit'; mailtoLink.click(); } }, { text: "Learn More", href: "#about" } ]} buttonAnimation="blur-reveal" -- 2.49.1 From 9cf2e0f5885d49a5ca9c2bd38d9d2841091d9357 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:05:51 +0000 Subject: [PATCH 2/3] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 183b9d6..78c7051 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -45,8 +45,8 @@ export default function PricingPage() { plans={[ { id: "website-package", badge: "Website Package", price: "$1,000", subtitle: "One-time + $100/month", buttons: [ - { text: "Get Started", href: "/book-meeting" }, - { text: "Schedule Consultation", href: "/book-meeting" } + { text: "Get Started", onClick: () => { const mailtoLink = document.createElement('a'); mailtoLink.href = 'mailto:hello@digibridged.com?subject=Get%20Started%20-%20Website%20Package'; mailtoLink.click(); } }, + { text: "Schedule Consultation", onClick: () => { const mailtoLink = document.createElement('a'); mailtoLink.href = 'mailto:hello@digibridged.com?subject=Schedule%20Consultation'; mailtoLink.click(); } } ], features: [ "5 core pages", "Mobile responsive design", "Google Reviews integration", "Click-to-call button", "Basic SEO setup", "24-hour delivery guarantee", "Monthly hosting and maintenance", "Small updates included" @@ -64,7 +64,7 @@ export default function PricingPage() { title="Let's Build Your Professional Online Presence" description="Get your business online with a professional, high-performing website. Our Website Package includes everything you need to attract customers and generate leads online." buttons={[ - { text: "Schedule Free Consultation", href: "/book-meeting" }, + { text: "Schedule Free Consultation", onClick: () => { const mailtoLink = document.createElement('a'); mailtoLink.href = 'mailto:hello@digibridged.com?subject=Schedule%20Free%20Consultation'; mailtoLink.click(); } }, { text: "Back to Home", href: "/" } ]} buttonAnimation="blur-reveal" -- 2.49.1 From 4d66d90fa530d37a9935fedbf014b842a58f93cf Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:05:51 +0000 Subject: [PATCH 3/3] Update src/app/process/page.tsx --- src/app/process/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/process/page.tsx b/src/app/process/page.tsx index 1e9b0aa..0b9de00 100644 --- a/src/app/process/page.tsx +++ b/src/app/process/page.tsx @@ -78,7 +78,7 @@ export default function ProcessPage() { title="Let's Build Your Search-Optimized Platform" description="Discover how our strategic approach to web infrastructure and SEO can drive measurable traffic and leads for your business. Schedule a free audit today." buttons={[ - { text: "Schedule Free Audit", href: "/book-meeting" }, + { text: "Schedule Free Audit", onClick: () => { const mailtoLink = document.createElement('a'); mailtoLink.href = 'mailto:hello@digibridged.com?subject=Schedule%20Free%20Audit'; mailtoLink.click(); } }, { text: "Back to Home", href: "/" } ]} buttonAnimation="blur-reveal" -- 2.49.1