Files
Greenlens/greenlns-landing/lib/site.ts
2026-04-02 11:39:57 +02:00

23 lines
774 B
TypeScript

const siteUrl = (process.env.NEXT_PUBLIC_SITE_URL || 'https://greenlenspro.com').trim()
export const siteConfig = {
name: 'GreenLens',
domain: siteUrl,
supportEmail: 'knuth.timo@gmail.com',
legalEmail: 'knuth.timo@gmail.com',
iosAppStoreUrl: '',
androidPlayStoreUrl: '',
company: {
legalName: 'GreenLens',
representative: 'Tim Knuth',
addressLine1: 'Replace with your legal business address',
addressLine2: '',
country: 'Germany',
registry: 'Replace with your company registry details',
vatId: 'Replace with your VAT ID or remove this line',
},
} as const
export const hasIosStoreUrl = siteConfig.iosAppStoreUrl.trim().length > 0
export const hasAndroidStoreUrl = siteConfig.androidPlayStoreUrl.trim().length > 0