diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a845e29..fc18730 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}