Skip to content

Commit b3693b0

Browse files
GeneAIclaude
andcommitted
fix: Replace broken GitHub Discussions links with Issues links
GitHub Discussions is not enabled on the repository, causing 404 errors. Changed all Discussions references to point to GitHub Issues instead. Changes: - URL: /discussions → /issues - Title: "Join Discussions" → "Get Support" - Title: "GitHub Discussions" → "Community Support" - Description: "Ask questions and share your wizards" → "Ask questions and get help from the community" - Contact page: "Community Support" → "Ask Questions" Updated in 2 files: - website/app/framework/page.tsx (community section) - website/app/contact/page.tsx (alternative contact methods) GitHub Issues provides the same community support functionality and is already enabled on the repository. User feedback: "https://github.com/Smart-AI-Memory/empathy/discussions leds to a 404 error" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent b9d3a1c commit b3693b0

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">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
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
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/discussions"
250+
href="https://github.com/Smart-AI-Memory/empathy/issues"
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">Join Discussions</h3>
256+
<h3 className="text-lg font-bold mb-2">Get Support</h3>
257257
<p className="text-sm text-[var(--text-secondary)]">
258-
Ask questions and share your wizards
258+
Ask questions and get help from the community
259259
</p>
260260
</a>
261261

0 commit comments

Comments
 (0)