Skip to content

Commit c521efb

Browse files
fix: Update landing page stats to accurate values
- Tests: 1,954 → 2,249 - Coverage: 90% → 81% - Wizards: 45+ → 44 - Removed placeholder testimonial section - Updated docs redirect page with accurate wizard counts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 4dc8c6b commit c521efb

3 files changed

Lines changed: 9 additions & 27 deletions

File tree

website/app/docs/page.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default function DocsRedirectPage() {
2323
<div className="text-6xl mb-4">📚</div>
2424
<h1 className="text-4xl font-bold mb-4">Documentation Moved</h1>
2525
<p className="text-xl text-[var(--text-secondary)] mb-6">
26-
Our documentation has been upgraded to a comprehensive MkDocs site with 45+ wizard guides.
26+
Our documentation has been upgraded to a comprehensive MkDocs site with 44 wizard guides.
2727
</p>
2828
<p className="text-[var(--text-secondary)] mb-8">
2929
Redirecting you to the new documentation...
@@ -56,15 +56,15 @@ export default function DocsRedirectPage() {
5656
<ul className="space-y-2 text-sm text-[var(--text-secondary)]">
5757
<li className="flex items-start gap-2">
5858
<span className="text-[var(--success)] mt-1"></span>
59-
<span><strong>45+ Wizard Guides</strong> - Comprehensive documentation for all wizards</span>
59+
<span><strong>44 Wizard Guides</strong> - Comprehensive documentation for all wizards</span>
6060
</li>
6161
<li className="flex items-start gap-2">
6262
<span className="text-[var(--success)] mt-1"></span>
63-
<span><strong>Healthcare Section</strong> - 18 HIPAA-compliant wizards with clinical examples</span>
63+
<span><strong>Healthcare Section</strong> - 16 HIPAA-compliant wizards with clinical examples</span>
6464
</li>
6565
<li className="flex items-start gap-2">
6666
<span className="text-[var(--success)] mt-1"></span>
67-
<span><strong>Software Development</strong> - 12 wizards for debugging, testing, and security</span>
67+
<span><strong>Software Development</strong> - 16 wizards for debugging, testing, and security</span>
6868
</li>
6969
<li className="flex items-start gap-2">
7070
<span className="text-[var(--success)] mt-1"></span>

website/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ export default function Home() {
178178
<h3 className="text-xl font-bold mb-2">Empathy</h3>
179179
<p className="text-sm text-[var(--muted)] mb-3">The intelligence layer</p>
180180
<p className="text-[var(--text-secondary)] text-sm mb-4">
181-
5-level maturity model with 45+ specialized wizards for healthcare,
181+
5-level maturity model with 44 specialized wizards for healthcare,
182182
software development, and AI collaboration.
183183
</p>
184184
<div className="flex flex-wrap gap-1 mb-4">

website/components/SocialProof.tsx

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
const metrics = [
2-
{ value: '1,954', label: 'Tests Passing' },
3-
{ value: '90%', label: 'Code Coverage' },
4-
{ value: '45+', label: 'Wizards Available' },
2+
{ value: '2,249', label: 'Tests Passing' },
3+
{ value: '81%', label: 'Code Coverage' },
4+
{ value: '44', label: 'Wizards Available' },
55
{ value: '5', label: 'LLMs Supported' },
66
];
77

8-
interface SocialProofProps {
9-
showTestimonial?: boolean;
10-
}
11-
12-
export default function SocialProof({ showTestimonial = true }: SocialProofProps) {
8+
export default function SocialProof() {
139
return (
1410
<section className="py-16">
1511
<div className="container">
@@ -28,20 +24,6 @@ export default function SocialProof({ showTestimonial = true }: SocialProofProps
2824
))}
2925
</div>
3026

31-
{/* Testimonial */}
32-
{showTestimonial && (
33-
<div className="bg-[var(--border)] bg-opacity-30 p-8 rounded-xl max-w-2xl mx-auto">
34-
<blockquote className="text-lg text-[var(--text-primary)] italic mb-4 text-center">
35-
&quot;Empathy transformed how our team approaches AI integration.
36-
Level 4 anticipatory intelligence catches issues we never would have found.&quot;
37-
</blockquote>
38-
<div className="text-center">
39-
<div className="text-sm text-[var(--muted)]">
40-
— Testimonial Coming Soon
41-
</div>
42-
</div>
43-
</div>
44-
)}
4527
</div>
4628
</div>
4729
</section>

0 commit comments

Comments
 (0)