1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
import "./globals.css";
import Header from "./components/header/header";
import { lexend } from "../../config/fonts";
import { Providers } from "./themeManager";
export const metadata = {
title: "Dramalama",
description:
"Online service to watch kdramas and anime for free. You can also read and download mangas for free.",
generator: "Next.js",
applicationName: "Dramalama",
authors: [{ name: "zephex", url: "https://github.com/real-zephex" }],
creator: "Zephex",
keywords: [
"Kdrama",
"Anime",
"Manga",
"Watch Online",
"watch kdrama free",
"watch anime free online",
"kdrama for free",
"watch online",
"read mangas for free",
"mangas online",
"movies online",
"free movies online",
"watch series for free",
],
robots: {
index: true,
follow: true,
nocache: false,
googleBot: {
index: true,
follow: true,
noimageindex: false,
"max-video-preview": -1,
"max-image-preview": "large",
"max-snippet": -1,
},
},
verification: {
google: "google",
yandex: "yandex",
yahoo: "yahoo",
other: {
me: ["[email protected]"],
},
},
};
export default function RootLayout({ children }) {
return (
<html lang="en" className={lexend.className}>
<head>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-64S37Q7YY4"
></script>
<script
dangerouslySetInnerHTML={{
__html: `
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-64S37Q7YY4');
`,
}}
></script>
</head>
<body>
<Providers>
<Header />
{children}
</Providers>
</body>
</html>
);
}
|