Add MIT license and docs/api, strip SaaS status/admin remnants from robots and footer, align env/compose/README with payment-free product truth.
35 lines
832 B
TypeScript
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>
|
|
);
|
|
}
|