Update src/app/layout.tsx

This commit is contained in:
2026-03-04 16:27:00 +00:00
parent 5d086da26e
commit 3d93a2aea1

View File

@@ -1,48 +1,22 @@
import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Inter } 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 publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Anime Spirit Wiki - Complete Roblox Game Guide", description: "Master Anime Spirit with our comprehensive wiki. Find character guides, battle tactics, quest walkthroughs, and trading tips. Join 50K+ players today.", keywords: "Anime Spirit, Roblox wiki, game guide, characters, battle tactics, trading", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Anime Spirit Wiki - Your Ultimate Roblox Guide", description: "Explore comprehensive guides for Anime Spirit on Roblox. Master characters, tactics, and strategies.", siteName: "Anime Spirit Wiki", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/bigfoot-represented-neon-glow_23-2151322897.jpg", alt: "Anime Spirit Game"},
],
},
twitter: {
card: "summary_large_image", title: "Anime Spirit Wiki - Complete Roblox Guide", description: "Master your gameplay with our comprehensive wiki featuring character guides, battle tactics, and community insights.", images: ["http://img.b2bpic.net/free-photo/bigfoot-represented-neon-glow_23-2151322897.jpg"],
},
};
title: "Anime Spirit Wiki - Roblox Game Guide", description: "Ultimate guide to characters, abilities, lore, and strategies in Anime Spirit Roblox game"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1410,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}