import type { Metadata } from 'next'
import '../src/index.css'

export const metadata: Metadata = {
  title: 'SUNO Music Generator',
  description: 'Collaborative music creation powered by SUNO - prompt layers and share with friends',
  icons: {
    icon: '/vite.svg', // Keep existing icon for now
  },
}

export default function RootLayout({
  children,
}: {
  children: React.ReactNode
}) {
  return (
    <html lang="en">
      <head>
        <meta charSet="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      </head>
      <body className="theme-dark">{children}</body>
    </html>
  )
}