25 lines
880 B
TypeScript
25 lines
880 B
TypeScript
const siteUrl = (process.env.NEXT_PUBLIC_SITE_URL || 'https://greenlenspro.com').trim()
|
|
|
|
export const siteConfig = {
|
|
name: 'GreenLens',
|
|
domain: siteUrl,
|
|
supportEmail: 'timo@greenlenspro.com',
|
|
legalEmail: 'timo@greenlenspro.com',
|
|
iosAppStoreUrl: 'https://apps.apple.com/de/app/greenlens-pro/id6759843546?l=en-GB',
|
|
androidPlayStoreUrl: '',
|
|
chromeWebStoreUrl: 'https://chromewebstore.google.com/detail/mhjlfgkdckkimpjeifippefjhalcafjg',
|
|
firefoxAddonUrl: 'https://addons.mozilla.org/addon/greenlens-plant-identifier/',
|
|
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
|