From b33aeaa00d2cdfbf245d8cdadb2fed59aec9deed Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 16:46:16 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 47 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b84876e..ade2e81 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "PUBGHub - Buy Premium PUBG Accounts Securely", description: "Browse verified PUBG accounts with guaranteed security. Instant delivery, bank-level encryption, and 100% buyer protection. Start gaming like a pro today.", keywords: "PUBG accounts, buy PUBG account, verified gaming accounts, secure account transfer, ranked accounts, esports accounts", metadataBase: new URL("https://pubghub.com"), - alternates: { - canonical: "https://pubghub.com"}, - openGraph: { - title: "PUBGHub - Premium PUBG Account Marketplace", description: "Secure, verified PUBG accounts with instant delivery and buyer protection.", url: "https://pubghub.com", siteName: "PUBGHub", type: "website"}, - twitter: { - card: "summary_large_image", title: "PUBGHub - Buy Verified PUBG Accounts", description: "Premium gaming accounts with 100% security guarantee and instant delivery."}, - robots: { - index: true, - follow: true, - }, -}; + title: "PUBGHub - Premium PUBG Account Marketplace", description: "Browse, buy, and play verified PUBG accounts with bank-level security and instant delivery. Join thousands of satisfied gamers on PUBGHub."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}