Files
songs2vid/app/layout.tsx
T
Atakan Doğan ÖzbanandCursor c702686726 Close OSS self-host gaps: in-repo API docs, legal notes, and packaging.
Add MIT license and docs/api, strip SaaS status/admin remnants from robots and footer, align env/compose/README with payment-free product truth.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-03 07:36:08 +02:00

35 lines
832 B
TypeScript

import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { Providers } from "./providers";
const inter = Inter({ subsets: ["latin"] });
const SITE_NAME = "Songs2VID";
const DEFAULT_TITLE = "Songs2VID";
const DEFAULT_DESCRIPTION =
"Payment-free self-hosted audio-to-video creation and YouTube uploading.";
export const metadata: Metadata = {
title: DEFAULT_TITLE,
description: DEFAULT_DESCRIPTION,
applicationName: SITE_NAME,
icons: {
icon: "/favicon.png",
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<body className={inter.className} suppressHydrationWarning>
<Providers>{children}</Providers>
</body>
</html>
);
}