| export const categoryEmojis: Record<string, string> = { |
| 'All': '🌟', |
| 'Popular': '🔥', |
| }; |
|
|
| export const POPULAR_BUSINESS_APPS = [ |
| 'slack', |
| 'microsoft_teams', |
| 'discord', |
| 'zoom', |
| 'telegram_bot_api', |
| 'whatsapp', |
| |
| 'gmail', |
| 'microsoft_outlook', |
| 'google_calendar', |
| 'microsoft_exchange', |
| 'calendly', |
| |
| 'google_drive', |
| 'microsoft_onedrive', |
| 'dropbox', |
| 'google_docs', |
| 'google_sheets', |
| 'microsoft_word', |
| 'microsoft_excel', |
| 'microsoft_powerpoint', |
| |
| 'notion', |
| 'asana', |
| 'monday', |
| 'trello', |
| 'linear', |
| 'jira', |
| 'clickup', |
| 'basecamp', |
| |
| 'salesforce', |
| 'hubspot', |
| 'pipedrive', |
| 'zendesk', |
| 'freshdesk', |
| 'intercom', |
| |
| 'github', |
| 'gitlab', |
| 'bitbucket', |
| 'docker', |
| 'jenkins', |
| 'vercel', |
| 'netlify', |
| |
| 'supabase', |
| 'firebase', |
| 'mongodb', |
| 'postgresql', |
| 'mysql', |
| 'redis', |
| 'airtable', |
| |
| 'openai', |
| 'anthropic', |
| 'hugging_face', |
| 'replicate', |
| |
| 'google_analytics', |
| 'facebook', |
| 'instagram', |
| 'twitter', |
| 'linkedin', |
| 'mailchimp', |
| 'constant_contact', |
| |
| 'stripe', |
| 'paypal', |
| 'quickbooks', |
| 'xero', |
| 'square', |
| |
| 'aws', |
| 'google_cloud', |
| 'microsoft_azure', |
| 'digitalocean', |
| 'heroku', |
| |
| 'shopify', |
| 'woocommerce', |
| 'magento', |
| 'bigcommerce', |
| |
| 'bamboohr', |
| 'workday', |
| 'greenhouse', |
| 'lever', |
| |
| 'figma', |
| 'canva', |
| 'adobe_creative_cloud', |
| |
| 'okta', |
| 'auth0', |
| 'datadog', |
| 'new_relic', |
| 'pagerduty', |
| |
| 'hootsuite', |
| 'buffer', |
| 'sprout_social', |
| ]; |
|
|
| export const PAGINATION_CONSTANTS = { |
| FIRST_PAGE: 'FIRST_PAGE', |
| POPULAR_APPS_COUNT: 100, |
| REGULAR_APPS_PAGE_SIZE: 20, |
| } as const; |