Update src/app/layout.tsx

This commit is contained in:
2026-03-06 16:46:16 +00:00
parent b9f3b42cd6
commit b33aeaa00d

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}