From ab18f5bad2e99f2173969508915e26f65b37b4da Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 14:12:47 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 +++++++++------------------------------------- 1 file changed, 9 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a845e29..09026cf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + + {children} +