Update src/app/layout.tsx
Browse files- src/app/layout.tsx +33 -34
src/app/layout.tsx
CHANGED
|
@@ -1,34 +1,33 @@
|
|
| 1 |
-
import type { Metadata } from "next";
|
| 2 |
-
import { Inter } from "next/font/google";
|
| 3 |
-
import "./globals.css";
|
| 4 |
-
import Header from "./components/Header";
|
| 5 |
-
import Footer from "./components/Footer";
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
const inter = Inter({ subsets: ["latin"] });
|
| 9 |
-
|
| 10 |
-
export const metadata: Metadata = {
|
| 11 |
-
title: "
|
| 12 |
-
description: "
|
| 13 |
-
keywords: [
|
| 14 |
-
creator: "
|
| 15 |
-
};
|
| 16 |
-
|
| 17 |
-
export default function RootLayout({
|
| 18 |
-
children,
|
| 19 |
-
}: Readonly<{
|
| 20 |
-
children: React.ReactNode;
|
| 21 |
-
}>) {
|
| 22 |
-
return (
|
| 23 |
-
<html lang="en">
|
| 24 |
-
<body className={`${inter.className} overflow-y-scroll`} >
|
| 25 |
-
<Header />
|
| 26 |
-
<main className="flex flex-col items-center m-auto w-full">
|
| 27 |
-
{children}
|
| 28 |
-
</main>
|
| 29 |
-
<Footer />
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
}
|
|
|
|
| 1 |
+
import type { Metadata } from "next";
|
| 2 |
+
import { Inter } from "next/font/google";
|
| 3 |
+
import "./globals.css";
|
| 4 |
+
import Header from "./components/Header";
|
| 5 |
+
import Footer from "./components/Footer";
|
| 6 |
+
|
| 7 |
+
|
| 8 |
+
const inter = Inter({ subsets: ["latin"] });
|
| 9 |
+
|
| 10 |
+
export const metadata: Metadata = {
|
| 11 |
+
title: "N M API",
|
| 12 |
+
description: "Ne Musik API mehr nicht!",
|
| 13 |
+
keywords: [api", "music", "generation", "ai"],
|
| 14 |
+
creator: "",
|
| 15 |
+
};
|
| 16 |
+
|
| 17 |
+
export default function RootLayout({
|
| 18 |
+
children,
|
| 19 |
+
}: Readonly<{
|
| 20 |
+
children: React.ReactNode;
|
| 21 |
+
}>) {
|
| 22 |
+
return (
|
| 23 |
+
<html lang="en">
|
| 24 |
+
<body className={`${inter.className} overflow-y-scroll`} >
|
| 25 |
+
<Header />
|
| 26 |
+
<main className="flex flex-col items-center m-auto w-full">
|
| 27 |
+
{children}
|
| 28 |
+
</main>
|
| 29 |
+
<Footer />
|
| 30 |
+
</body>
|
| 31 |
+
</html>
|
| 32 |
+
);
|
| 33 |
+
}
|
|
|