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>
17 lines
557 B
TypeScript
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's terms.
|
|
</p>
|
|
</LegalPageLayout>
|
|
);
|
|
}
|