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>
14 lines
388 B
TypeScript
14 lines
388 B
TypeScript
import { SUPPORT_EMAIL } from "@/lib/plans";
|
|
import { BRAND_DOMAIN, BRAND_NAME } from "@/lib/branding";
|
|
|
|
export const LEGAL_LAST_UPDATED = "July 30, 2026";
|
|
|
|
export const LEGAL_OPERATOR = {
|
|
name: BRAND_NAME,
|
|
legalName: "Atakan Doğan Özban",
|
|
address: "Universitas u. 2/A",
|
|
city: "7622 Pécs, Hungary",
|
|
email: SUPPORT_EMAIL,
|
|
website: `https://www.${BRAND_DOMAIN}`,
|
|
} as const;
|