diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f5ba163..2fc0e10 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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, diff --git a/src/app/page.tsx b/src/app/page.tsx index e98ccd6..28c991a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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" } ]} diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..6408c0a --- /dev/null +++ b/src/app/pricing/page.tsx @@ -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 ( + + + +
+ +
+ +
+ +
+ + +
+ ); +}