blob: 1b8875d0b310edc9355b883cff22d51ee69f35ed (
plain) (
blame)
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
|
import { Inter } from "next/font/google";
import styles from "./globals.module.css";
import "./globals.css";
import Header from "./components/header/header";
import { SpeedInsights } from "@vercel/speed-insights/next";
import { Analytics } from "@vercel/analytics/react";
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "Dramalama v2.0",
description:
"Online service to watch kdramas and anime for free. You can also read and download mangas for free.",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={inter.className}>
<SpeedInsights />
<Analytics />
<Header />
{children}
</body>
</html>
);
}
|