Files
songs2vid/app/layout.tsx
T
Atakan Doğan Özban d9cdaff521 Strip Songs2VID to a payment-free self-hosted OSS core.
Remove Stripe/billing/pricing/marketing, simplify schema and entitlements for unlimited self-host use, and keep auth, encode, and YouTube upload.
2026-08-03 06:52:00 +02:00

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>
);
}