File size: 775 Bytes
19e5f09 54e600b 19e5f09 | 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 | import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import Header from "./components/Header";
import Footer from "./components/Footer";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "N M API",
description: "Ne Musik API mehr nicht!",
keywords: ["api", "music", "generation", "ai"],
creator: "",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={`${inter.className} overflow-y-scroll`} >
<Header />
<main className="flex flex-col items-center m-auto w-full">
{children}
</main>
<Footer />
</body>
</html>
);
}
|