import type { Metadata } from "next";
import "./globals.css";

export const metadata: Metadata = {
  title: "Dancify - Suno Song to Just Dance",
  description:
    "Turn any Suno song into an interactive Just Dance game where you can get groovy!",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <head>
        <link href="https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@800,500,400,200,700&display=swap" rel="stylesheet" />
      </head>
      <body>{children}</body>
    </html>
  );
}
