File size: 914 Bytes
dfe72e0 |
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 35 |
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import Header from "./components/Header";
import Footer from "./components/Footer";
import { Analytics } from "@vercel/analytics/react"
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "suno api",
description: "Use API to call the music generation ai of suno.ai",
keywords: ["suno", "suno api", "suno.ai", "api", "music", "generation", "ai"],
creator: "@gcui.ai",
};
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 />
<Analytics />
</body>
</html>
);
}
|