Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 79c263ece8 | |||
| 91490fc88b | |||
| 8451edae7d | |||
| 44ac8a193e | |||
| 3d93a2aea1 | |||
| 5d086da26e | |||
| 7cab08af18 | |||
| 5ea45eb9d7 |
@@ -1,48 +1,23 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Public_Sans } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import "./styles/variables.css";
|
||||||
import Tag from "@/tag/Tag";
|
import "./styles/base.css";
|
||||||
|
|
||||||
const publicSans = Public_Sans({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-public-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
title: "Anime Spirit Wiki - Roblox Game Guide", description: "Ultimate guide to characters, abilities, lore, and strategies in Anime Spirit Roblox game"
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1410,7 +1385,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -33,7 +33,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Characters", id: "product" },
|
{ name: "Characters", id: "product" },
|
||||||
{ name: "Lore", id: "about" },
|
{ name: "Lore", id: "about" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
{ name: "Community", id: "team" },
|
{ name: "Community", id: "testimonials" },
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Join Community", href: "https://www.roblox.com"
|
text: "Join Community", href: "https://www.roblox.com"
|
||||||
@@ -60,6 +60,7 @@ export default function LandingPage() {
|
|||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Explore Wiki", href: "#features" },
|
{ text: "Explore Wiki", href: "#features" },
|
||||||
{ text: "View Characters", href: "#product" },
|
{ text: "View Characters", href: "#product" },
|
||||||
|
{ text: "Start Learning", href: "#features" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -253,4 +254,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user