Spaces:
Build error
Build error
| import type { Metadata } from "next"; | |
| import { Inter, Poppins } from "next/font/google"; | |
| import "./globals.css"; | |
| import { Providers } from "./providers"; | |
| const inter = Inter({ | |
| subsets: ["latin"], | |
| variable: "--font-inter", | |
| }); | |
| const poppins = Poppins({ | |
| weight: ["400", "500", "600", "700", "800"], | |
| subsets: ["latin"], | |
| variable: "--font-poppins", | |
| }); | |
| export const metadata: Metadata = { | |
| title: "AudioForge - AI Music Generation", | |
| description: "Turn your imagination into sound. Generate professional-quality music from text descriptions using open-source AI models.", | |
| keywords: ["AI music", "music generation", "text to music", "open source", "MusicGen", "audio synthesis"], | |
| authors: [{ name: "AudioForge" }], | |
| openGraph: { | |
| title: "AudioForge - AI Music Generation", | |
| description: "Turn your imagination into sound with AI-powered music generation", | |
| type: "website", | |
| }, | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: { | |
| children: React.ReactNode; | |
| }) { | |
| return ( | |
| <html lang="en" suppressHydrationWarning> | |
| <body className={`${inter.variable} ${poppins.variable} font-sans antialiased`}> | |
| <Providers>{children}</Providers> | |
| </body> | |
| </html> | |
| ); | |
| } | |