Files
songs2vid/app/terms/page.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

17 lines
557 B
TypeScript

import { LegalPageLayout } from "@/components/LegalPageLayout";
export default function TermsPage() {
return (
<LegalPageLayout title="Terms of Use">
<p>
Songs2VID is provided as open-source, self-hosted software without warranty. The operator of
each instance is responsible for availability, configuration, and user access.
</p>
<p>
You are responsible for the media you process and upload, including compliance with
copyright law and YouTube&apos;s terms.
</p>
</LegalPageLayout>
);
}