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
603 B
TypeScript
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>
|
|
);
|
|
}
|