From da4794e0be1fa6fade030cd89a535b4fffb77a73 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 14:00:55 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++--------------------------------------- 1 file changed, 8 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 314bc3f..09d826a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,19 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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"], -}); - -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "AdvikaWeb - Enterprise Cloud Infrastructure Solutions", description: "High-performance cloud infrastructure and data center solutions with 99.99% uptime, global data centers, and 24/7 expert support.", keywords: "cloud infrastructure, data center, cloud hosting, enterprise cloud, cybersecurity, CDN, global servers", metadataBase: new URL("https://advikaweb.com"), - alternates: { - canonical: "https://advikaweb.com"}, - openGraph: { - title: "AdvikaWeb - Enterprise Cloud Infrastructure", description: "Enterprise-grade cloud infrastructure with 99.99% uptime and global data centers.", url: "https://advikaweb.com", siteName: "AdvikaWeb", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZeYPnI2GuUOnBFJ0K72qCFm9W/a-futuristic-3d-floating-server-rack-or--1772804634315-531fc786.png", alt: "AdvikaWeb Cloud Infrastructure"}, - ], - }, - twitter: { - card: "summary_large_image", title: "AdvikaWeb - Enterprise Cloud Infrastructure", description: "High-speed cloud solutions with 99.99% uptime guarantee", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZeYPnI2GuUOnBFJ0K72qCFm9W/a-futuristic-3d-floating-server-rack-or--1772804634315-531fc786.png"], - }, - robots: { - index: true, - follow: true, - }, + title: "AdvikaWeb | Enterprise Cloud Infrastructure Solutions", description: "Enterprise-grade cloud infrastructure and data center solutions powered by cutting-edge technology. 99.99% uptime, military-grade security, and 24/7 support." }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +