aboutsummaryrefslogtreecommitdiff
path: root/src/app/layout.js
blob: c95a5dd64bd541f489a9c2c653b707da26cd21c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { Inter } from "next/font/google";
import "./globals.css";
import Header from "./header/header";

const inter = Inter({ subsets: ["latin"] });

export const metadata = {
	title: "Create Next App",
	description: "Generated by create next app",
};

export default function RootLayout({ children }) {
  	return (
		<html lang="en">
	  		<body className={inter.className}>
				<Header />
				{children}
			</body>
		</html>
	);
}