8 Commits

Author SHA1 Message Date
79c263ece8 Update src/app/page.tsx 2026-03-04 16:28:32 +00:00
91490fc88b Update src/app/layout.tsx 2026-03-04 16:28:32 +00:00
8451edae7d Merge version_2 into main
Merge version_2 into main
2026-03-04 16:27:04 +00:00
44ac8a193e Update src/app/page.tsx 2026-03-04 16:27:00 +00:00
3d93a2aea1 Update src/app/layout.tsx 2026-03-04 16:27:00 +00:00
5d086da26e Merge version_1 into main
Merge version_1 into main
2026-03-04 16:24:46 +00:00
7cab08af18 Merge version_1 into main
Merge version_1 into main
2026-03-04 16:23:46 +00:00
5ea45eb9d7 Merge version_1 into main
Merge version_1 into main
2026-03-04 16:22:35 +00:00
2 changed files with 12 additions and 37 deletions

View File

@@ -1,48 +1,23 @@
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 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -33,7 +33,7 @@ export default function LandingPage() {
{ name: "Characters", id: "product" },
{ name: "Lore", id: "about" },
{ name: "FAQ", id: "faq" },
{ name: "Community", id: "team" },
{ name: "Community", id: "testimonials" },
]}
button={{
text: "Join Community", href: "https://www.roblox.com"
@@ -60,6 +60,7 @@ export default function LandingPage() {
buttons={[
{ text: "Explore Wiki", href: "#features" },
{ text: "View Characters", href: "#product" },
{ text: "Start Learning", href: "#features" },
]}
/>
</div>
@@ -253,4 +254,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}