11 Commits

Author SHA1 Message Date
b92217b872 Add src/app/pricing/page.tsx 2026-03-05 16:53:34 +00:00
0eb61cb929 Update src/app/page.tsx 2026-03-05 16:53:34 +00:00
cba0107a32 Update src/app/layout.tsx 2026-03-05 16:53:33 +00:00
df3baf5904 Merge version_4 into main
Merge version_4 into main
2026-03-05 16:52:07 +00:00
51da6176dd Update src/app/page.tsx 2026-03-05 16:52:03 +00:00
fee49110b4 Merge version_4 into main
Merge version_4 into main
2026-03-05 16:14:55 +00:00
ca624a05a4 Update src/app/page.tsx 2026-03-05 16:14:51 +00:00
8cb399fbd4 Merge version_4 into main
Merge version_4 into main
2026-03-05 16:13:48 +00:00
cdfc8b4a49 Update src/app/page.tsx 2026-03-05 16:13:44 +00:00
b764ef3774 Merge version_3 into main
Merge version_3 into main
2026-03-03 06:36:34 +00:00
ee348a013a Merge version_3 into main
Merge version_3 into main
2026-03-03 06:34:35 +00:00
3 changed files with 100 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ const inter = Inter({
});
export const metadata: Metadata = {
title: "DigiBridged", description: "Digital transformation for local enterprises"};
title: "DigiBridged", description: "Your Business, Digitally Bridged"};
export default function RootLayout({
children,

View File

@@ -31,6 +31,7 @@ export default function DigiBridgedLanding() {
navItems={[
{ name: "Solutions", id: "features" },
{ name: "Results", id: "metrics" },
{ name: "Pricing", id: "/pricing" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" }
]}
@@ -44,7 +45,7 @@ export default function DigiBridgedLanding() {
tag="Digital Transformation"
tagIcon={Zap}
tagAnimation="blur-reveal"
imageSrc="http://img.b2bpic.net/free-photo/luxurious-boardroom-space-within-multinational-company-used-meetings_482257-124520.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFKBKtzUE9UtHpu5cFGLuPTXL/futuristic-ai-and-machine-learning-illus-1772729125218-f4a71618.png"
imageAlt="DigiBridged digital platform dashboard"
mediaAnimation="slide-up"
buttons={[

97
src/app/pricing/page.tsx Normal file
View File

@@ -0,0 +1,97 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import PricingCardNine from "@/components/sections/pricing/PricingCardNine";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterCard from "@/components/sections/footer/FooterCard";
import { Zap, Linkedin, Twitter } from "lucide-react";
export default function PricingPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="compact"
sizing="large"
background="aurora"
cardStyle="layered-gradient"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="light"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="DigiBridged"
navItems={[
{ name: "Solutions", id: "features" },
{ name: "Results", id: "metrics" },
{ name: "Pricing", id: "/pricing" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" }
]}
/>
</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"
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", imageAlt: "Starter plan", button: { text: "Get Started", 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", 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", 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"
]
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
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."
buttons={[
{ text: "Schedule Free Consultation", href: "mailto:hello@digibridged.com" },
{ text: "Back to Home", href: "/" }
]}
buttonAnimation="blur-reveal"
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="DigiBridged"
copyrightText="© 2025 DigiBridged | Bridging Traditional Business to Digital Markets"
socialLinks={[
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "LinkedIn" },
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" }
]}
/>
</div>
</ThemeProvider>
);
}