/* Where the product's own screens send people for the terms and the privacy notice. * * On threadcount.tech these are the hosted service's pages. A Community instance is somebody * else's service with somebody else's privacy officer, so the operator sets NEXT_PUBLIC_TERMS_URL * and NEXT_PUBLIC_PRIVACY_URL to their own documents; until they do, the links point here, which * is at least honest about where the software came from. Compiled in at build time. */ export const TERMS_URL = process.env.NEXT_PUBLIC_TERMS_URL || "https://threadcount.tech/terms"; export const PRIVACY_URL = process.env.NEXT_PUBLIC_PRIVACY_URL || "https://threadcount.tech/privacy";