Skip to content

Commit c552f92

Browse files
GeneAIclaude
authored andcommitted
feat(website): Add Code Health Assistant to features, update GitHub links
- Added Code Health Assistant feature card to framework page - Updated all GitHub links to new repo name (empathy-framework) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent dc29407 commit c552f92

File tree

14 files changed

+1228
-18
lines changed

14 files changed

+1228
-18
lines changed

website/app/contact/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,15 +319,15 @@ export default function ContactPage() {
319319
<div className="text-center p-6 bg-[var(--border)] bg-opacity-30 rounded-lg">
320320
<div className="text-3xl mb-3">💬</div>
321321
<h3 className="font-bold mb-2">GitHub Discussions</h3>
322-
<a href="https://github.com/Smart-AI-Memory/empathy/discussions" className="text-sm text-[var(--accent)] hover:underline" target="_blank" rel="noopener noreferrer">
322+
<a href="https://github.com/Smart-AI-Memory/empathy-framework/discussions" className="text-sm text-[var(--accent)] hover:underline" target="_blank" rel="noopener noreferrer">
323323
Community Support
324324
</a>
325325
</div>
326326

327327
<div className="text-center p-6 bg-[var(--border)] bg-opacity-30 rounded-lg">
328328
<div className="text-3xl mb-3">🐛</div>
329329
<h3 className="font-bold mb-2">Bug Reports</h3>
330-
<a href="https://github.com/Smart-AI-Memory/empathy/issues" className="text-sm text-[var(--accent)] hover:underline" target="_blank" rel="noopener noreferrer">
330+
<a href="https://github.com/Smart-AI-Memory/empathy-framework/issues" className="text-sm text-[var(--accent)] hover:underline" target="_blank" rel="noopener noreferrer">
331331
GitHub Issues
332332
</a>
333333
</div>

website/app/contribute/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ export default function ContributePage() {
228228
Help others discover the framework
229229
</p>
230230
<a
231-
href="https://github.com/Smart-AI-Memory/empathy"
231+
href="https://github.com/Smart-AI-Memory/empathy-framework"
232232
target="_blank"
233233
rel="noopener noreferrer"
234234
className="btn btn-outline btn-sm"
@@ -243,7 +243,7 @@ export default function ContributePage() {
243243
Help improve quality by reporting bugs
244244
</p>
245245
<a
246-
href="https://github.com/Smart-AI-Memory/empathy/issues"
246+
href="https://github.com/Smart-AI-Memory/empathy-framework/issues"
247247
target="_blank"
248248
rel="noopener noreferrer"
249249
className="btn btn-outline btn-sm"

website/app/dev-dashboard/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ export default function DevDashboard() {
429429
View Framework
430430
</Link>
431431
<a
432-
href="https://github.com/Smart-AI-Memory/empathy"
432+
href="https://github.com/Smart-AI-Memory/empathy-framework"
433433
className="btn btn-outline"
434434
target="_blank"
435435
rel="noopener noreferrer"

website/app/faq/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const faqData = [
8585
},
8686
{
8787
question: 'How do I report bugs?',
88-
answer: 'Report bugs via GitHub Issues at https://github.com/Smart-AI-Memory/empathy/issues. Include your environment details, steps to reproduce, and expected vs actual behavior.',
88+
answer: 'Report bugs via GitHub Issues at https://github.com/Smart-AI-Memory/empathy-framework/issues. Include your environment details, steps to reproduce, and expected vs actual behavior.',
8989
},
9090
{
9191
question: 'Can I contribute to the project?',
@@ -189,7 +189,7 @@ export default function FAQPage() {
189189
Contact Us
190190
</a>
191191
<a
192-
href="https://github.com/Smart-AI-Memory/empathy/discussions"
192+
href="https://github.com/Smart-AI-Memory/empathy-framework/discussions"
193193
target="_blank"
194194
rel="noopener noreferrer"
195195
className="btn btn-outline text-lg px-8 py-4"

website/app/framework/page.tsx

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default function FrameworkPage() {
4949
</p>
5050
<div className="flex flex-col sm:flex-row gap-4 justify-center">
5151
<a
52-
href="https://github.com/Smart-AI-Memory/empathy"
52+
href="https://github.com/Smart-AI-Memory/empathy-framework"
5353
className="btn btn-primary"
5454
target="_blank"
5555
rel="noopener noreferrer"
@@ -131,6 +131,16 @@ export default function FrameworkPage() {
131131
Built-in PII scrubbing, audit logging, and compliance controls.
132132
</p>
133133
</div>
134+
135+
<div className="bg-[var(--background)] p-6 rounded-lg border-2 border-[var(--primary)] border-opacity-50">
136+
<div className="mb-4">
137+
<Image src="/images/icons/file-terminal.svg" alt="" width={32} height={32} className="opacity-70" />
138+
</div>
139+
<h3 className="text-xl font-bold mb-3">Code Health Assistant <span className="text-xs font-normal text-[var(--primary)] ml-2">NEW</span></h3>
140+
<p className="text-[var(--text-secondary)]">
141+
Automated code quality checks, auto-fix capabilities, and health trend tracking via CLI.
142+
</p>
143+
</div>
134144
</div>
135145
</div>
136146
</section>
@@ -266,7 +276,7 @@ result = await wizard.analyze({"data": your_data})`}
266276

267277
<div className="grid md:grid-cols-3 gap-6">
268278
<a
269-
href="https://github.com/Smart-AI-Memory/empathy"
279+
href="https://github.com/Smart-AI-Memory/empathy-framework"
270280
className="p-6 border-2 border-[var(--border)] rounded-lg hover:border-[var(--primary)] transition-colors"
271281
target="_blank"
272282
rel="noopener noreferrer"
@@ -281,7 +291,7 @@ result = await wizard.analyze({"data": your_data})`}
281291
</a>
282292

283293
<a
284-
href="https://github.com/Smart-AI-Memory/empathy/discussions"
294+
href="https://github.com/Smart-AI-Memory/empathy-framework/discussions"
285295
className="p-6 border-2 border-[var(--border)] rounded-lg hover:border-[var(--primary)] transition-colors"
286296
target="_blank"
287297
rel="noopener noreferrer"

website/app/pricing/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export default function PricingPage() {
9797
</div>
9898

9999
<a
100-
href="https://github.com/Smart-AI-Memory/empathy"
100+
href="https://github.com/Smart-AI-Memory/empathy-framework"
101101
target="_blank"
102102
rel="noopener noreferrer"
103103
className="btn btn-outline w-full"
@@ -311,7 +311,7 @@ export default function PricingPage() {
311311
</p>
312312
<div className="flex flex-col sm:flex-row gap-4 justify-center">
313313
<a
314-
href="https://github.com/Smart-AI-Memory/empathy"
314+
href="https://github.com/Smart-AI-Memory/empathy-framework"
315315
target="_blank"
316316
rel="noopener noreferrer"
317317
className="btn btn-primary text-lg px-8 py-4"

website/app/terms/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ export default function TermsPage() {
5252
<li><strong>Redistribution:</strong> Subject to license terms</li>
5353
</ul>
5454
<p>
55-
Full license terms available at: <a href="https://github.com/Smart-AI-Memory/empathy/blob/main/LICENSE-FAIR-SOURCE.md">LICENSE-FAIR-SOURCE.md</a>
55+
Full license terms available at: <a href="https://github.com/Smart-AI-Memory/empathy-framework/blob/main/LICENSE-FAIR-SOURCE.md">LICENSE-FAIR-SOURCE.md</a>
5656
</p>
5757

5858
<h3>2.2 Commercial License</h3>
5959
<p>
6060
Commercial licenses are required for organizations with 6 or more employees.
6161
One license covers all developer environments (workstation, staging, production, CI/CD).
62-
See <a href="https://github.com/Smart-AI-Memory/empathy/blob/main/LICENSE-COMMERCIAL.md">LICENSE-COMMERCIAL.md</a> for full terms.
62+
See <a href="https://github.com/Smart-AI-Memory/empathy-framework/blob/main/LICENSE-COMMERCIAL.md">LICENSE-COMMERCIAL.md</a> for full terms.
6363
</p>
6464

6565
<h2>3. Acceptable Use</h2>

website/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export default function Footer() {
8888
</li>
8989
<li>
9090
<a
91-
href="https://github.com/Smart-AI-Memory/empathy"
91+
href="https://github.com/Smart-AI-Memory/empathy-framework"
9292
target="_blank"
9393
rel="noopener noreferrer"
9494
className="text-sm text-[var(--text-secondary)] hover:text-[var(--primary)] transition-colors"

website/components/GitHubStarsBadge.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ interface GitHubStarsBadgeProps {
77
}
88

99
export default function GitHubStarsBadge({
10-
repo = 'Smart-AI-Memory/empathy'
10+
repo = 'Smart-AI-Memory/empathy-framework'
1111
}: GitHubStarsBadgeProps) {
1212
const [stars, setStars] = useState<number | null>(null);
1313
const [loading, setLoading] = useState(true);

website/components/GitHubStats.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ interface GitHubStatsProps {
1515
compact?: boolean;
1616
}
1717

18-
export default function GitHubStats({ repo = 'Smart-AI-Memory/empathy', compact = false }: GitHubStatsProps) {
18+
export default function GitHubStats({ repo = 'Smart-AI-Memory/empathy-framework', compact = false }: GitHubStatsProps) {
1919
const [stats, setStats] = useState<GitHubStats | null>(null);
2020
const [loading, setLoading] = useState(true);
2121
const [error, setError] = useState<string | null>(null);

0 commit comments

Comments
 (0)