jam-buddy / apps /web /app /layout.tsx
salgadev's picture
Sync from GitHub 6feaf31d
b2e4883 verified
Raw
History Blame Contribute Delete
790 Bytes
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>
);
}