| 1234567891011121314151617181920212223242526272829 |
- /**
- * Application-wide constants and configuration
- */
- export const config = {
- // Base URL
- baseUrl: "https://kirincode.ai",
- // GitHub
- github: {
- repoUrl: "https://github.com/kirincode/kirincode",
- starsFormatted: {
- compact: "160K",
- full: "160,000",
- },
- },
- // Social links
- social: {
- twitter: "https://x.com/opencode",
- discord: "https://discord.gg/opencode",
- },
- // Static stats (used on landing page)
- stats: {
- contributors: "900",
- commits: "13,000",
- monthlyUsers: "7.5M",
- },
- } as const
|