summaryrefslogtreecommitdiffhomepage
path: root/packages/console/app/src/config.ts
diff options
context:
space:
mode:
authorJay V <[email protected]>2025-11-03 18:03:10 -0500
committerJay V <[email protected]>2025-11-03 18:17:32 -0500
commitd06afd87e5a0325730b11478eb49af4ced12608a (patch)
tree97555b444fac7e289063a3bcded796a9cfc8db0b /packages/console/app/src/config.ts
parent9fb6e81007ad000e5e55255af7e12a6c6fb58bde (diff)
downloadopencode-d06afd87e5a0325730b11478eb49af4ced12608a.tar.gz
opencode-d06afd87e5a0325730b11478eb49af4ced12608a.zip
ignore: lander
Diffstat (limited to 'packages/console/app/src/config.ts')
-rw-r--r--packages/console/app/src/config.ts26
1 files changed, 26 insertions, 0 deletions
diff --git a/packages/console/app/src/config.ts b/packages/console/app/src/config.ts
new file mode 100644
index 000000000..097764b87
--- /dev/null
+++ b/packages/console/app/src/config.ts
@@ -0,0 +1,26 @@
+/**
+ * Application-wide constants and configuration
+ */
+export const config = {
+ // GitHub
+ github: {
+ repoUrl: "https://github.com/sst/opencode",
+ starsFormatted: {
+ compact: "30K",
+ full: "30,000",
+ },
+ },
+
+ // Social links
+ social: {
+ twitter: "https://x.com/opencode",
+ discord: "https://discord.gg/opencode",
+ },
+
+ // Static stats (used on landing page)
+ stats: {
+ contributors: "250",
+ commits: "3,500",
+ monthlyUsers: "300,000",
+ },
+} as const