8 Commits

Author SHA1 Message Date
be105c6d3d Update src/app/page.tsx 2026-03-03 06:36:30 +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
3ccedecec2 Update src/app/page.tsx 2026-03-03 06:30:58 +00:00
2999e9d2b5 Merge version_2 into main
Merge version_2 into main
2026-03-03 06:29:44 +00:00
85efdc3313 Update src/app/page.tsx 2026-03-03 06:29:40 +00:00
c57939c80b Merge version_1 into main
Merge version_1 into main
2026-03-03 06:14:18 +00:00

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: "Digital transformation for local enterprises"};
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>
);
}