Update src/app/layout.tsx
This commit is contained in:
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Raleway } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Raleway } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const raleway = Raleway({
|
||||
variable: "--font-raleway",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Comik Narrik - Premium Donghua Anime Streaming",
|
||||
description: "Stream premium Donghua anime with lightning-fast performance, multi-server playback, and cinematic dark interface. Zero buffering, instant episode access, and daily releases.",
|
||||
keywords: "Donghua, anime streaming, Chinese anime, watch anime online, streaming platform, anime episodes",
|
||||
metadataBase: new URL("https://comiknarrik.com"),
|
||||
alternates: {
|
||||
canonical: "https://comiknarrik.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Comik Narrik - Premium Donghua Streaming",
|
||||
description: "Experience the ultimate Donghua streaming platform with multi-server playback and cinematic interface",
|
||||
url: "https://comiknarrik.com",
|
||||
siteName: "Comik Narrik",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AoFGykMeQbGjGWomz2N17ycz2L/a-cinematic-donghua-hero-banner-featurin-1773251196314-2e628dfd.png",
|
||||
alt: "Comik Narrik Platform Hero",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Comik Narrik - Premium Donghua Anime Streaming",
|
||||
description: "Stream your favorite Donghua with zero buffering and multi-server support",
|
||||
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AoFGykMeQbGjGWomz2N17ycz2L/a-cinematic-donghua-hero-banner-featurin-1773251196314-2e628dfd.png"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${raleway.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user