import type { Metadata, Viewport } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "Jam Buddy", description: "Jam Buddy — an AI music companion that listens to what you play and joins in, at your tempo, in the instrument you pick. Built for the Stability AI Challenge at Music Hackspace Montreal.", }; export const viewport: Viewport = { width: "device-width", initialScale: 1, themeColor: "#1a1a1a", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
Skip to main content {children} ); }