Remove Stripe/billing/pricing/marketing, simplify schema and entitlements for unlimited self-host use, and keep auth, encode, and YouTube upload. Co-authored-by: Cursor <cursoragent@cursor.com>
35 lines
819 B
TypeScript
35 lines
819 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 =
|
|
"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>
|
|
);
|
|
}
|