Add MIT license and docs/api, strip SaaS status/admin remnants from robots and footer, align env/compose/README with payment-free product truth.
14 lines
389 B
TypeScript
14 lines
389 B
TypeScript
import { SUPPORT_EMAIL } from "@/lib/plans";
|
|
import { BRAND_DOMAIN, BRAND_NAME } from "@/lib/branding";
|
|
|
|
export const LEGAL_LAST_UPDATED = "August 3, 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;
|