From 77230137621e06d0a8ca8304cb9fcc45b5aaf1d4 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 12:40:04 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++++-------------------------------------- 1 file changed, 8 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2034fb9..224de66 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Chihab_070 | Gaming & Tech | Wild Rift Pro", description: "Follow Chihab_070 for daily Wild Rift gameplay highlights, live streams, and pro-level esports content. Experience high-octane mobile gaming.", keywords: "gaming, wild rift, twitch, esports, mobile gaming, league of legends", metadataBase: new URL("https://chihab070.com"), - openGraph: { - title: "Chihab_070 Gaming Hub", description: "Join the gaming community and watch professional Wild Rift gameplay", url: "https://chihab070.com", siteName: "Chihab_070", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATlPPnLrEwJ9owNF01ARl5RNSi/futuristic-dark-gaming-background-inspir-1772625535841-4a5f971e.png", alt: "Chihab_070 Gaming Hub"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Chihab_070 | Wild Rift Pro", description: "Watch professional gaming highlights and live streams", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATlPPnLrEwJ9owNF01ARl5RNSi/futuristic-dark-gaming-background-inspir-1772625535841-4a5f971e.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Chihab_070 - Wild Rift Gaming", description: "Gaming & Tech | Wild Rift Champion | Mobile Esports Creator"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}