This commit is contained in:
alexandrev-tibco
2026-01-13 17:29:39 +01:00
commit 92de2ea68d
23 changed files with 4113 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
/**
* PorfolioJournal Site Configuration
* Edit these values to customize the site
*/
const CONFIG = {
APP_NAME: 'PorfolioJournal',
TAGLINE: 'Your personal portfolio, thoughtfully tracked.',
DESCRIPTION: 'A calm, offline-first iOS app for tracking your portfolio with monthly check-ins, reflections, and long-term insights.',
APP_STORE_URL: 'https://apps.apple.com/app/porfoliojournal/id000000000',
SUPPORT_EMAIL: 'support@portfoliojournal.app',
COMPANY_NAME: 'PorfolioJournal',
WEBSITE_URL: 'https://portfoliojournal.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);