diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index e071605..3a067cb 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,62 +1,25 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Manrope } from "next/font/google";
-import { DM_Sans } from "next/font/google";
+import "./styles/variables.css";
+import "./styles/base.css";
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 manrope = Manrope({
- variable: "--font-manrope", subsets: ["latin"],
-});
-
-const dmSans = DM_Sans({
- variable: "--font-dm-sans", subsets: ["latin"],
-});
-
export const metadata: Metadata = {
- title: "AnimeHub - Connect with Anime Fans Worldwide", description: "Join AnimeHub, the ultimate community for anime enthusiasts. Discover trending series, share recommendations, and connect with 50K+ passionate anime fans.", keywords: "anime community, anime fans, anime recommendations, anime discussions, manga, watchlist, anime events", metadataBase: new URL("https://animehub.com"),
- alternates: {
- canonical: "https://animehub.com"},
- openGraph: {
- title: "AnimeHub - Connect with Anime Fans Worldwide", description: "Your ultimate anime community platform. Discover, discuss, and celebrate your favorite anime with passionate fans.", url: "https://animehub.com", siteName: "AnimeHub", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-vector/people-avatars-collection_1333-49.jpg", alt: "AnimeHub - Anime Community"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "AnimeHub - Connect with Anime Fans", description: "Join the ultimate anime community. 50K+ fans connecting over their favorite series.", images: ["http://img.b2bpic.net/free-vector/people-avatars-collection_1333-49.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "AnimeHub - Your Ultimate Anime Community", description:
+ "Connect with thousands of anime fans worldwide. Discover trending series, share recommendations, and celebrate your favorite shows with AnimeHub."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-