|
|
|
|
@@ -1,54 +1,25 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } 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"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "ADVANIKA | Enterprise Cloud & Dedicated Server Solutions | 24+ Years", description: "Elevate your business with ADVANIKA's premium cloud and dedicated server solutions. 5,000+ trusted customers, 99.9% uptime, ISO 27001 certified infrastructure across 50+ Indian cities.", keywords: "cloud server solutions, dedicated servers, data center, enterprise infrastructure, Jaipur, Noida, India, web hosting", metadataBase: new URL("https://www.advikaweb.com/"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://www.advikaweb.com/"
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "ADVANIKA | Enterprise Cloud & Dedicated Servers", description: "Premium infrastructure solutions for enterprises. 24+ years of excellence, 99.9% uptime, 24/7 support.", url: "https://www.advikaweb.com/", siteName: "ADVANIKA", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZhJT7pm5QgzbGMLcTAOzsFeEk/a-stunning-3d-rendered-data-center-serve-1772806011390-26f1ef80.png", alt: "Advanced data center infrastructure"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "ADVANIKA | Enterprise Infrastructure Solutions", description: "Trusted by 5,000+ enterprises. Premium cloud servers, dedicated infrastructure, 99.9% uptime guarantee.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZhJT7pm5QgzbGMLcTAOzsFeEk/a-stunning-3d-rendered-data-center-serve-1772806011390-26f1ef80.png"]
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
title: "ADVANIKA - Enterprise Cloud & Dedicated Servers", description: "Premium cloud server and dedicated infrastructure solutions with 24+ years of expertise, 99.9% uptime guarantee, and 5,000+ trusted customers."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={`${inter.variable} antialiased`}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1416,7 +1387,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|