From 1afc349fd388ff02d69047f20eb8605e8c7cb650 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 05:57:00 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1438 +------------------------------------------- 1 file changed, 7 insertions(+), 1431 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 41a5833..c05e107 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1443 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } 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 inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const figtree = Figtree({ - variable: "--font-figtree", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "AI Anime Image Generator - Convert Photos to Ghibli Style Art", - description: "Transform your photos into beautiful anime artwork using advanced AI. Free anime image generator with multiple styles, HD downloads, and fast processing. No design skills needed.", - keywords: "anime image generator, Ghibli style converter, photo to anime, AI art generator, anime photo filter, cartoon maker, image animation, digital art AI", - metadataBase: new URL("https://animeai.com"), - alternates: { - canonical: "https://animeai.com", - }, - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "AI Anime Image Generator - Turn Photos Into Ghibli Style Art", - description: "Convert any photo into stunning anime artwork instantly. Multiple anime styles, HD quality, fast processing.", - type: "website", - siteName: "AnimeAI", - url: "https://animeai.com", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQWFqpu3TxcWvT1S01tprRX9AT/a-split-screen-before-and-after-image-sh-1773035248698-9c47dfab.png", - alt: "AI Anime Image Generator Demo", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "AI Anime Image Generator", - description: "Transform your photos into anime art in seconds", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQWFqpu3TxcWvT1S01tprRX9AT/a-split-screen-before-and-after-image-sh-1773035248698-9c47dfab.png", - ], - }, -}; + title: "AnimeAI - AI Anime Image Generator", description: "Transform your photos into beautiful anime artwork using advanced AI technology. Create stunning anime-style illustrations in seconds."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -