config.ts 494 B

1234567891011121314151617181920212223242526
  1. /**
  2. * Application-wide constants and configuration
  3. */
  4. export const config = {
  5. // GitHub
  6. github: {
  7. repoUrl: "https://github.com/sst/opencode",
  8. starsFormatted: {
  9. compact: "30K",
  10. full: "30,000",
  11. },
  12. },
  13. // Social links
  14. social: {
  15. twitter: "https://x.com/opencode",
  16. discord: "https://discord.gg/opencode",
  17. },
  18. // Static stats (used on landing page)
  19. stats: {
  20. contributors: "250",
  21. commits: "3,500",
  22. monthlyUsers: "300,000",
  23. },
  24. } as const