aboutsummaryrefslogtreecommitdiff
path: root/src/app/layout.jsx
blob: a2fc5aede86d332f376068a0cdf7d7a937114aea (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
28
import { Inter } from "next/font/google";
import "./globals.css";
import Header from "./components/header/header";
import Footer from "./components/footer/page";
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 />
				<Footer />
				{children}
			</body>
		</html>
	);
}