diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4bef06e..a1b65b8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}