Skip to content

Commit 84dc982

Browse files
GeneAIclaude
andcommitted
feat: Restore GitHub Discussions links now that it's enabled
GitHub Discussions has been enabled on both the Empathy Framework and MemDocs repositories. Reverting links from Issues back to Discussions. Changes: - URL: /issues → /discussions (restored) - Title: "Get Support" → "Join Discussions" (restored) - Title: "Community Support" → "GitHub Discussions" (restored) - Description: Restored original descriptions for Discussions - Contact page: "Ask Questions" → "Community Support" Updated in 2 files: - website/app/framework/page.tsx (community section) - website/app/contact/page.tsx (alternative contact methods) GitHub Discussions provides better Q&A format and community engagement compared to Issues. User action: Enabled GitHub Discussions on both repositories 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent b3693b0 commit 84dc982

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

website/app/contact/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,9 +296,9 @@ export default function ContactPage() {
296296

297297
<div className="text-center p-6 bg-[var(--border)] bg-opacity-30 rounded-lg">
298298
<div className="text-3xl mb-3">💬</div>
299-
<h3 className="font-bold mb-2">Community Support</h3>
300-
<a href="https://github.com/Smart-AI-Memory/empathy/issues" className="text-sm text-[var(--accent)] hover:underline" target="_blank" rel="noopener noreferrer">
301-
Ask Questions
299+
<h3 className="font-bold mb-2">GitHub Discussions</h3>
300+
<a href="https://github.com/Smart-AI-Memory/empathy/discussions" className="text-sm text-[var(--accent)] hover:underline" target="_blank" rel="noopener noreferrer">
301+
Community Support
302302
</a>
303303
</div>
304304

website/app/framework/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,15 +247,15 @@ result = await wizard.analyze({"data": your_data})`}
247247
</a>
248248

249249
<a
250-
href="https://github.com/Smart-AI-Memory/empathy/issues"
250+
href="https://github.com/Smart-AI-Memory/empathy/discussions"
251251
className="p-6 border-2 border-[var(--border)] rounded-lg hover:border-[var(--primary)] transition-colors"
252252
target="_blank"
253253
rel="noopener noreferrer"
254254
>
255255
<div className="text-3xl mb-3">💬</div>
256-
<h3 className="text-lg font-bold mb-2">Get Support</h3>
256+
<h3 className="text-lg font-bold mb-2">Join Discussions</h3>
257257
<p className="text-sm text-[var(--text-secondary)]">
258-
Ask questions and get help from the community
258+
Ask questions and share your wizards
259259
</p>
260260
</a>
261261

0 commit comments

Comments
 (0)