File size: 790 Bytes
b2e4883 | 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 | 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 (
<html lang="en">
<body className="min-h-screen bg-bg text-fg antialiased">
<a href="#main-content" className="skip-link">
Skip to main content
</a>
{children}
</body>
</html>
);
}
|