Files
songs2vid/app/privacy/page.tsx
T
Atakan Doğan ÖzbanandCursor 925aadae75 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.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-03 06:52:00 +02:00

17 lines
603 B
TypeScript

import { LegalPageLayout } from "@/components/LegalPageLayout";
export default function PrivacyPage() {
return (
<LegalPageLayout title="Privacy Policy">
<p>
Songs2VID is self-hosted software. Your operator controls the deployment, database, uploads,
logs, and Google OAuth configuration. Songs2VID does not include payment processing.
</p>
<p>
Google and YouTube process account and upload data according to their own policies. Contact
the operator of this instance for data access or deletion requests.
</p>
</LegalPageLayout>
);
}