AlexMia commited on
Commit
19e5f09
·
verified ·
1 Parent(s): 309d3d6

Update src/app/layout.tsx

Browse files
Files changed (1) hide show
  1. 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
- import { Analytics } from "@vercel/analytics/react"
7
-
8
- const inter = Inter({ subsets: ["latin"] });
9
-
10
- export const metadata: Metadata = {
11
- title: "suno api",
12
- description: "Use API to call the music generation ai of suno.ai",
13
- keywords: ["suno", "suno api", "suno.ai", "api", "music", "generation", "ai"],
14
- creator: "@gcui.ai",
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
- <Analytics />
31
- </body>
32
- </html>
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
+ }