Compare commits
11 Commits
version_11
...
version_15
| Author | SHA1 | Date | |
|---|---|---|---|
| b441d194c0 | |||
| 7873b56d68 | |||
| 2a452376e0 | |||
| c024950b76 | |||
| c85e4a25e1 | |||
| cf8e1e2903 | |||
| 112624151d | |||
| 4d66d90fa5 | |||
| 9cf2e0f588 | |||
| f4e511fb13 | |||
| 1c2e8543c5 |
@@ -1389,4 +1389,4 @@ export default function RootLayout({
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user