23 lines
719 B
TypeScript
23 lines
719 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: 'https://apps.apple.com/de/app/greenlens-pro/id6759843546?l=en-GB',
|
|
androidPlayStoreUrl: '',
|
|
company: {
|
|
legalName: 'GreenLens',
|
|
representative: 'Tim Knuth',
|
|
addressLine1: '',
|
|
addressLine2: '',
|
|
country: 'Germany',
|
|
registry: '',
|
|
vatId: '',
|
|
},
|
|
} as const
|
|
|
|
export const hasIosStoreUrl = siteConfig.iosAppStoreUrl.trim().length > 0
|
|
export const hasAndroidStoreUrl = siteConfig.androidPlayStoreUrl.trim().length > 0
|