diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 35b2d0b..fa688cc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,76 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Archivo } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const archivo = Archivo({ - variable: "--font-archivo", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "AI Anime Battle Studio - Create Epic Fights with AI", - description: "Generate stunning anime fight scenes with AI. Watch cinematic battles, create your own, and join the future of entertainment.", - keywords: "AI anime, fight generator, AI animation, anime battles, anime creation, AI entertainment", - metadataBase: new URL("https://aianimebattle.studio"), - alternates: { - canonical: "https://aianimebattle.studio", - }, - openGraph: { - title: "AI Anime Battle Studio", - description: "Creating epic anime fights with artificial intelligence", - url: "https://aianimebattle.studio", - siteName: "AI Anime Battle Studio", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ac3voOKwsKbqX5J64GLYlySNQT/epic-full-screen-anime-fight-scene-with--1772878446518-4f63be8f.png", - alt: "Epic anime battle with neon effects", - }, - ], - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "AI Anime Battle Studio", - description: "Watch and create epic anime fights powered by AI", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ac3voOKwsKbqX5J64GLYlySNQT/epic-full-screen-anime-fight-scene-with--1772878446518-4f63be8f.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "AI Anime Battle Studio", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +