File size: 1,257 Bytes
09fa60b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
36
37
38
39
40
41
42
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>
  );
}