Update src/app/layout.tsx

This commit is contained in:
2026-03-06 14:00:55 +00:00
parent 746981442e
commit da4794e0be

View File

@@ -1,57 +1,19 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } 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"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "AdvikaWeb - Enterprise Cloud Infrastructure Solutions", description: "High-performance cloud infrastructure and data center solutions with 99.99% uptime, global data centers, and 24/7 expert support.", keywords: "cloud infrastructure, data center, cloud hosting, enterprise cloud, cybersecurity, CDN, global servers", metadataBase: new URL("https://advikaweb.com"),
alternates: {
canonical: "https://advikaweb.com"},
openGraph: {
title: "AdvikaWeb - Enterprise Cloud Infrastructure", description: "Enterprise-grade cloud infrastructure with 99.99% uptime and global data centers.", url: "https://advikaweb.com", siteName: "AdvikaWeb", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZeYPnI2GuUOnBFJ0K72qCFm9W/a-futuristic-3d-floating-server-rack-or--1772804634315-531fc786.png", alt: "AdvikaWeb Cloud Infrastructure"},
],
},
twitter: {
card: "summary_large_image", title: "AdvikaWeb - Enterprise Cloud Infrastructure", description: "High-speed cloud solutions with 99.99% uptime guarantee", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZeYPnI2GuUOnBFJ0K72qCFm9W/a-futuristic-3d-floating-server-rack-or--1772804634315-531fc786.png"],
},
robots: {
index: true,
follow: true,
},
title: "AdvikaWeb | Enterprise Cloud Infrastructure Solutions", description: "Enterprise-grade cloud infrastructure and data center solutions powered by cutting-edge technology. 99.99% uptime, military-grade security, and 24/7 support."
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1381,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}