Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b92217b872 | |||
| 0eb61cb929 | |||
| cba0107a32 | |||
| df3baf5904 | |||
| 51da6176dd | |||
| fee49110b4 | |||
| ca624a05a4 | |||
| 8cb399fbd4 | |||
| cdfc8b4a49 | |||
| b764ef3774 | |||
| be105c6d3d | |||
| ee348a013a | |||
| ab91753a65 | |||
| 0f68260cdf | |||
| 8cf69fccc3 | |||
| 3ccedecec2 | |||
| 2999e9d2b5 | |||
| 85efdc3313 | |||
| c57939c80b |
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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
97
src/app/pricing/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user