10 Commits

Author SHA1 Message Date
7873b56d68 Merge version_13 into main
Merge version_13 into main
2026-03-05 18:08:10 +00:00
2a452376e0 Update src/app/process/page.tsx 2026-03-05 18:08:06 +00:00
c024950b76 Update src/app/pricing/page.tsx 2026-03-05 18:08:05 +00:00
c85e4a25e1 Update src/app/page.tsx 2026-03-05 18:08:05 +00:00
cf8e1e2903 Update src/app/layout.tsx 2026-03-05 18:08:04 +00:00
112624151d Merge version_12 into main
Merge version_12 into main
2026-03-05 18:05:55 +00:00
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
4 changed files with 11 additions and 11 deletions

View File

@@ -1389,4 +1389,4 @@ export default function RootLayout({
</body>
</html>
);
}
}

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"
@@ -200,4 +200,4 @@ export default function DigiBridgedLanding() {
</div>
</ThemeProvider>
);
}
}

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"
@@ -85,4 +85,4 @@ export default function PricingPage() {
</div>
</ThemeProvider>
);
}
}

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"
@@ -99,4 +99,4 @@ export default function ProcessPage() {
</div>
</ThemeProvider>
);
}
}