SEO blogpost

This commit is contained in:
2026-08-05 19:39:22 +02:00
parent d7432fa65c
commit cf05e60251
53 changed files with 10592 additions and 125 deletions

View File

@@ -1,22 +1,23 @@
const siteUrl = (process.env.NEXT_PUBLIC_SITE_URL || 'https://greenlenspro.com').trim()
export const siteConfig = {
name: 'GreenLens',
domain: siteUrl,
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: '',
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
iosAppStoreUrl: 'https://apps.apple.com/de/app/greenlens-pro/id6759843546?l=en-GB',
androidPlayStoreUrl: '',
chromeWebStoreUrl: 'https://chromewebstore.google.com/detail/mhjlfgkdckkimpjeifippefjhalcafjg',
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