3 Commits

Author SHA1 Message Date
4e3e9201eb Update theme colors 2026-03-06 14:13:39 +00:00
15fe209b28 Update src/app/styles/variables.css 2026-03-06 14:13:17 +00:00
9ad618dc02 Update src/app/layout.tsx 2026-03-06 14:13:17 +00:00

View File

@@ -1,54 +1,16 @@
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"],
});
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 Server Solutions", description: "Premium cloud server solutions with 24+ years of expertise, 5,000+ trusted customers, and 99.9% uptime guarantee."};
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>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1378,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}