/** * MealMood Site Configuration * Edit these values to customize the site */ const CONFIG = { APP_NAME: 'MealMood', TAGLINE: 'Plan your family's week of meals in 5 minutes.', DESCRIPTION: 'A fast, visual iOS app for weekly meal planning with drag-and-drop, smart auto-complete, and optional calendar sync.', APP_STORE_URL: 'https://apps.apple.com/us/app/mealmood/id0000000000?pt=123456&ct=homepage_other&mt=8', SUPPORT_EMAIL: 'support@mealmood.app', COMPANY_NAME: 'MealMood', WEBSITE_URL: 'https://mealmood.app', EFFECTIVE_DATE: 'today', COPYRIGHT_YEAR: new Date().getFullYear(), ENABLE_ANALYTICS: false, ANALYTICS_ID: '', // Add your analytics ID if enabled // Social links (optional) SOCIAL: { TWITTER: '', GITHUB: '', MASTODON: '' } }; // Freeze config to prevent accidental modifications Object.freeze(CONFIG); Object.freeze(CONFIG.SOCIAL);