aboutsummaryrefslogtreecommitdiff
path: root/src/app/layout.jsx
blob: 6cb8c6a5180dec667b03b8161db32ee82584f247 (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
29
import { Inter } from "next/font/google";
import styles from "./globals.module.css";
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>
	);
}