Merge version_2 into main #2
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000612e6;
|
||||
--background: #e8f0f8;
|
||||
--card: #dce8f3;
|
||||
--foreground: #001122;
|
||||
--primary-cta: #15479c;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #000612e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
--accent: #a8cce8;
|
||||
--background-accent: #7ba3cf;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user