Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fea76e3a99 | |||
| 3e7bf4f7ca | |||
| fb5ce39362 | |||
| bc0ff3af0d | |||
| 2a27a9b7df | |||
| 0ffb94c542 | |||
| b417c2db2d | |||
| f9f3f39b8b | |||
| 66ff7d4329 | |||
| 0d399d8b41 | |||
| 3f65472443 | |||
| 1671bb52c1 | |||
| f5f6411ec2 | |||
| 4b3ac68418 | |||
| f9006da699 | |||
| 12c5c3f0c4 |
@@ -9,7 +9,8 @@ const inter = Inter({
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "DigiBridged", description: "Your Business, Digitally Bridged"};
|
||||
title: "DigiBridged", description: "Your Business, Digitally Bridged"
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -18,7 +19,18 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.variable}>{children}
|
||||
<body className={inter.variable}>
|
||||
{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
if (typeof window !== 'undefined') {
|
||||
window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = window.__REACT_DEVTOOLS_GLOBAL_HOOK__ || { isDisabled: true };
|
||||
}
|
||||
`,
|
||||
}}
|
||||
/>
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
@@ -55,19 +55,19 @@ export default function DigiBridgedLanding() {
|
||||
testimonials={[
|
||||
{
|
||||
name: "Marcus Chen", handle: "CEO, Premier Retail Group", testimonial: "DigiBridged transformed our digital presence in 90 days. We've seen a 340% increase in qualified leads.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1"
|
||||
imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop"
|
||||
},
|
||||
{
|
||||
name: "Jennifer Walsh", handle: "Owner, Walsh Professional Services", testimonial: "Finally, someone who understands local business challenges. Our online conversions doubled.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2"
|
||||
imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&h=400&fit=crop"
|
||||
},
|
||||
{
|
||||
name: "David Morales", handle: "General Manager, Hospitality Partners", testimonial: "The infrastructure they built handles our traffic seamlessly. ROI exceeded expectations by month two.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3"
|
||||
imageSrc: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=400&h=400&fit=crop"
|
||||
},
|
||||
{
|
||||
name: "Sarah Mitchell", handle: "VP Operations, Tech-Forward Retail", testimonial: "Sophisticated, strategic, results-driven. DigiBridged delivered measurable business impact.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=4"
|
||||
imageSrc: "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=400&h=400&fit=crop"
|
||||
}
|
||||
]}
|
||||
testimonialRotationInterval={6000}
|
||||
@@ -156,13 +156,13 @@ export default function DigiBridgedLanding() {
|
||||
tagAnimation="blur-reveal"
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "340%", title: "Avg Lead Increase", description: "Within 90 days of implementation", imageSrc: "http://img.b2bpic.net/free-photo/african-man-black-suit_1157-45555.jpg", imageAlt: "business growth sales increase conversion optimization digital success"
|
||||
id: "1", value: "340%", title: "Avg Lead Increase", description: "Within 90 days of implementation", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=400&h=400&fit=crop&_wi=1", imageAlt: "business growth sales increase conversion optimization digital success"
|
||||
},
|
||||
{
|
||||
id: "2", value: "2.8x", title: "ROI Multiplier", description: "Average client return on investment", imageSrc: "http://img.b2bpic.net/free-photo/busy-multicultural-diverse-employees-analysing-annual-financial-statistics-sitting-desk-front-laptop-holding-documents-searching-business-solutions-team-businesspeople-working-company_482257-13550.jpg?_wi=1", imageAlt: "lead generation customer engagement digital conversion business results"
|
||||
id: "2", value: "2.8x", title: "ROI Multiplier", description: "Average client return on investment", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=400&h=400&fit=crop&_wi=2", imageAlt: "lead generation customer engagement digital conversion business results"
|
||||
},
|
||||
{
|
||||
id: "3", value: "92%", title: "Client Retention", description: "Long-term partnership satisfaction", imageSrc: "http://img.b2bpic.net/free-photo/business-teamwork-meeting-concept_1421-631.jpg", imageAlt: "customer retention business performance success metrics growth tracking"
|
||||
id: "3", value: "92%", title: "Client Retention", description: "Long-term partnership satisfaction", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=400&h=400&fit=crop&_wi=3", imageAlt: "customer retention business performance success metrics growth tracking"
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import PricingCardNine from "@/components/sections/pricing/PricingCardNine";
|
||||
import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import { Zap, Linkedin, Twitter } from "lucide-react";
|
||||
@@ -35,30 +35,21 @@ export default function PricingPage() {
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing" className="pt-20">
|
||||
<PricingCardNine
|
||||
title="Transparent, Scalable Pricing"
|
||||
description="Choose the plan that fits your business needs. All plans include core infrastructure and support."
|
||||
tag="Our Plans"
|
||||
<PricingCardTwo
|
||||
title="Simple, Transparent Pricing"
|
||||
description="One comprehensive website package designed to drive results for your business."
|
||||
tag="Pricing"
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "starter", title: "Starter", price: "$2,999", period: "/month", imageSrc: "http://img.b2bpic.net/free-photo/business-plan_1017-30087.jpg?_wi=1", imageAlt: "Starter plan", button: { text: "Get Started", href: "mailto:hello@digibridged.com" },
|
||||
id: "website-package", badge: "Website Package", price: "$1,000", subtitle: "One-time + $100/month", buttons: [
|
||||
{ text: "Get Started", href: "mailto:hello@digibridged.com" },
|
||||
{ text: "Schedule Consultation", href: "mailto:hello@digibridged.com" }
|
||||
],
|
||||
features: [
|
||||
"High-performance web infrastructure", "SEO optimization foundation", "Basic analytics setup", "Email support", "Monthly check-ins"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "professional", title: "Professional", price: "$5,999", period: "/month", imageSrc: "http://img.b2bpic.net/free-photo/business-teamwork-meeting_1421-1269.jpg?_wi=1", imageAlt: "Professional plan", button: { text: "Get Started", href: "mailto:hello@digibridged.com" },
|
||||
features: [
|
||||
"Everything in Starter", "Performance marketing management", "Advanced analytics & reporting", "Priority support", "Weekly optimization calls", "Paid advertising strategy"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "enterprise", title: "Enterprise", price: "Custom", period: "/month", imageSrc: "http://img.b2bpic.net/free-photo/corporate-business_1017-21551.jpg?_wi=1", imageAlt: "Enterprise plan", button: { text: "Schedule Consultation", href: "mailto:hello@digibridged.com" },
|
||||
features: [
|
||||
"Everything in Professional", "Custom infrastructure design", "Dedicated account manager", "24/7 priority support", "Full integration & automation", "Strategic authority positioning", "Quarterly business reviews"
|
||||
"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"
|
||||
]
|
||||
}
|
||||
]}
|
||||
@@ -70,8 +61,8 @@ export default function PricingPage() {
|
||||
tag="Ready to Get Started?"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="blur-reveal"
|
||||
title="Let's Discuss Your Perfect Plan"
|
||||
description="Not sure which plan is right for you? Schedule a free consultation with our team to discuss your specific needs and find the ideal solution for your business."
|
||||
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: "mailto:hello@digibridged.com" },
|
||||
{ text: "Back to Home", href: "/" }
|
||||
|
||||
Reference in New Issue
Block a user