From 5cef66c5c5f4c1c3c78d88fffe2a9f6de7e209e7 Mon Sep 17 00:00:00 2001 From: Lum1104 Date: Tue, 5 May 2026 16:52:13 +0800 Subject: [PATCH] docs(homepage): add Discord and enterprise contact MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Hero CTA row: blurple "Join Discord" button alongside Get Started - Hero pill below CTAs: "ENTERPRISE · lum@understand-anything.com →" mirroring the badge style at the top of the hero - Footer: add Discord and Contact (mailto) links to the link list - READMEs (en, zh-CN, zh-TW, ja, ko, es, tr): replace the small flat-square Discord badge with a prominent text link below the hero image: "💬 Join the Discord community →" plus a translated tagline. No version bump — content/copy only. Co-Authored-By: Claude Opus 4.7 (1M context) --- README.es-ES.md | 7 +- README.ja-JP.md | 7 +- README.ko-KR.md | 7 +- README.md | 7 +- README.tr-TR.md | 7 +- README.zh-CN.md | 7 +- README.zh-TW.md | 7 +- homepage/src/components/Footer.astro | 6 ++ homepage/src/components/Hero.astro | 109 ++++++++++++++++++++++++++- 9 files changed, 156 insertions(+), 8 deletions(-) diff --git a/README.es-ES.md b/README.es-ES.md index fd2c269..7682205 100644 --- a/README.es-ES.md +++ b/README.es-ES.md @@ -30,13 +30,18 @@ OpenCode Homepage Live Demo - Discord

Understand Anything — Convierte cualquier código fuente en un grafo de conocimiento interactivo

+

+ 💬 Únete a la comunidad de Discord → +
+ Pregunta, comparte lo que construyes y recibe ayuda de la comunidad. +

+ --- > [!TIP] diff --git a/README.ja-JP.md b/README.ja-JP.md index bacaced..9784724 100644 --- a/README.ja-JP.md +++ b/README.ja-JP.md @@ -31,13 +31,18 @@ OpenCode ホームページ ライブデモ - Discord

Understand Anything — あらゆるコードベースをインタラクティブなナレッジグラフに変換

+

+ 💬 Discord コミュニティに参加 → +
+ 質問・作品の共有・コミュニティとの交流はこちらから。 +

+ --- > [!TIP] diff --git a/README.ko-KR.md b/README.ko-KR.md index 938a479..9778355 100644 --- a/README.ko-KR.md +++ b/README.ko-KR.md @@ -30,13 +30,18 @@ OpenCode Homepage Live Demo - Discord

Understand Anything — 모든 코드베이스를 인터랙티브 지식 그래프로 변환

+

+ 💬 Discord 커뮤니티 참여하기 → +
+ 질문하고, 만든 것을 공유하고, 커뮤니티의 도움을 받으세요. +

+ --- > [!TIP] diff --git a/README.md b/README.md index 3f21160..21826ad 100644 --- a/README.md +++ b/README.md @@ -31,13 +31,18 @@ OpenCode Homepage Live Demo - Discord

Understand Anything — Turn any codebase into an interactive knowledge graph

+

+ 💬 Join the Discord community → +
+ Ask questions, share what you've built, get help from the community. +

+ --- > [!TIP] diff --git a/README.tr-TR.md b/README.tr-TR.md index b53ef37..27abbb3 100644 --- a/README.tr-TR.md +++ b/README.tr-TR.md @@ -31,13 +31,18 @@ OpenCode Ana Sayfa Canlı Demo - Discord

Understand Anything — Herhangi bir kod tabanını interaktif bir bilgi grafiğine dönüştür

+

+ 💬 Discord topluluğuna katıl → +
+ Sorular sor, yaptıklarını paylaş, topluluktan yardım al. +

+ --- > [!TIP] diff --git a/README.zh-CN.md b/README.zh-CN.md index 6be84aa..e420a0d 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -30,13 +30,18 @@ OpenCode Homepage Live Demo - Discord

Understand Anything — 将任何代码库转换为交互式知识图谱

+

+ 💬 加入 Discord 社区 → +
+ 来提问、分享你的项目、和社区一起讨论。 +

+ --- > [!TIP] diff --git a/README.zh-TW.md b/README.zh-TW.md index f53279c..57c1761 100644 --- a/README.zh-TW.md +++ b/README.zh-TW.md @@ -30,13 +30,18 @@ OpenCode Homepage Live Demo - Discord

Understand Anything — 將任何程式碼庫轉換為互動式知識圖譜

+

+ 💬 加入 Discord 社群 → +
+ 來提問、分享你的專案、和社群一起討論。 +

+ --- > [!TIP] diff --git a/homepage/src/components/Footer.astro b/homepage/src/components/Footer.astro index ccd1bac..7c4b4d2 100644 --- a/homepage/src/components/Footer.astro +++ b/homepage/src/components/Footer.astro @@ -1,5 +1,7 @@ --- const githubUrl = 'https://github.com/Lum1104/Understand-Anything'; +const discordUrl = 'https://discord.gg/pydat66RY'; +const contactEmail = 'lum@understand-anything.com'; ---