Merge branch 'main' into partners-catalog

This commit is contained in:
Jesse Winton
2025-04-29 14:13:28 -04:00
567 changed files with 11268 additions and 5960 deletions

View File

@@ -1,8 +1,40 @@
export const GITHUB_STARS = '47K';
export const GITHUB_REPO_LINK = 'https://github.com/appwrite/appwrite';
type SocialStats = {
[K in 'GITHUB' | 'DISCORD' | 'TWITTER' | 'YOUTUBE']: {
STAT: string;
LINK: string;
EXTRA?: Record<string, string> | undefined;
};
};
export const SOCIAL_STATS: SocialStats = {
GITHUB: {
STAT: '48K',
LINK: 'https://github.com/appwrite/appwrite',
EXTRA: {
COMMITS: '24K+',
PULL_REQUESTS: '4.5K+',
ISSUES: '3K+',
OPEN_ISSUES: '500+',
CLOSED_ISSUES: '3.3K+',
FORKS: '4.3K+',
CONTRIBUTORS: '800+'
}
},
DISCORD: {
STAT: '22K+',
LINK: '/discord'
},
TWITTER: {
STAT: '128K+',
LINK: 'https://twitter.com/intent/follow?screen_name=appwrite'
},
YOUTUBE: {
STAT: '11K+',
LINK: 'https://www.youtube.com/c/appwrite?sub_confirmation=1'
}
};
export const BANNER_KEY: Banners = 'discord-banner-01'; // Change key to force banner to show again
export const SENTRY_DSN =
'https://27d41dc8bb67b596f137924ab8599e59@o1063647.ingest.us.sentry.io/4507497727000576';
export const BLOG_POSTS_PER_PAGE = 12;