From f0492333744d769427784644b695686ad75ee71a Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 14:46:00 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1434 +------------------------------------------- 1 file changed, 8 insertions(+), 1426 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 333dcfc..e041a65 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1437 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ASAN DEVELOPER | Gaming & Business Platform", - description: "Unite business excellence with gaming thrills. Professional services meets competitive gaming in one seamless ecosystem.", - keywords: "gaming platform, business services, digital solutions, esports, enterprise software", - openGraph: { - title: "ASAN DEVELOPER", - description: "Ultimate Gaming & Business Platform - Where Professional Excellence Meets Competitive Gaming", - url: "https://asandeveloper.com", - siteName: "ASAN DEVELOPER", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfOIKs1YEmdDy6yx0Zg3ampbzi/ultra-modern-gaming-and-business-dashboa-1772980917226-a37878c6.png", - alt: "ASAN DEVELOPER Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "ASAN DEVELOPER | Gaming & Business", - description: "Experience the future of gaming and business services combined in one platform.", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfOIKs1YEmdDy6yx0Zg3ampbzi/ultra-modern-gaming-and-business-dashboa-1772980917226-a37878c6.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "ASAN DEVELOPER | Gaming & Business Platform", description: "Unite business excellence with gaming thrills. Experience the ultimate platform where professional services meet competitive gaming in one seamless ecosystem."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -