16 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
be105c6d3d Update src/app/page.tsx 2026-03-03 06:36:30 +00:00
ee348a013a Merge version_3 into main
Merge version_3 into main
2026-03-03 06:34:35 +00:00
ab91753a65 Update src/app/page.tsx 2026-03-03 06:34:29 +00:00
0f68260cdf Update src/app/layout.tsx 2026-03-03 06:34:28 +00:00
8cf69fccc3 Merge version_2 into main
Merge version_2 into main
2026-03-03 06:31:02 +00:00
2999e9d2b5 Merge version_2 into main
Merge version_2 into main
2026-03-03 06:29:44 +00:00
3 changed files with 106 additions and 45 deletions

View File

@@ -1,60 +1,24 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "DigiBridged | Digital Infrastructure for Local Enterprise", description: "High-performance web infrastructure and managed digital services for traditional businesses scaling online. Proven 340% lead increase. Strategic authority positioning.", keywords: "digital agency, web infrastructure, local business digital transformation, managed services, enterprise web solutions", metadataBase: new URL("https://digibridged.com"),
alternates: {
canonical: "https://digibridged.com"
},
openGraph: {
title: "DigiBridged | Your Business, Digitally Bridged", description: "Transform your business from offline to online with enterprise-grade digital infrastructure and expert strategy.", url: "https://digibridged.com", siteName: "DigiBridged", type: "website"
},
twitter: {
card: "summary_large_image", title: "DigiBridged | Digital Infrastructure for Enterprise", description: "Bridge the gap between traditional business expertise and modern digital strategy."
},
robots: {
index: true,
follow: true
}
};
title: "DigiBridged", description: "Your Business, Digitally Bridged"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1422,7 +1386,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

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>
);
}