4 Commits

Author SHA1 Message Date
4d66d90fa5 Update src/app/process/page.tsx 2026-03-05 18:05:51 +00:00
9cf2e0f588 Update src/app/pricing/page.tsx 2026-03-05 18:05:51 +00:00
f4e511fb13 Update src/app/page.tsx 2026-03-05 18:05:50 +00:00
1c2e8543c5 Merge version_11 into main
Merge version_11 into main
2026-03-05 18:03:31 +00:00
3 changed files with 7 additions and 7 deletions

View File

@@ -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"

View File

@@ -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"

View File

@@ -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"