Skip to content

Commit 5bd8eb7

Browse files
Lum1104claude
andcommitted
feat(homepage): update features, install, and footer for v2.0.0
Expand feature cards from 3 to 6 covering new capabilities across v1.2.0–v2.0.0 releases. Update install note and footer tagline to reflect multi-platform support. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent f9fada2 commit 5bd8eb7

File tree

3 files changed

+24
-9
lines changed

3 files changed

+24
-9
lines changed

homepage/src/components/Features.astro

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,40 @@ const features = [
33
{
44
icon: '',
55
title: 'Interactive Knowledge Graph',
6-
description: 'Visualize files, functions, and dependencies as an explorable graph with smart layout.',
6+
description: 'Visualize files, functions, and dependencies as an explorable graph with hierarchical drill-down and smart layout.',
77
},
88
{
9-
icon: '',
10-
title: 'Plain-English Summaries',
11-
description: 'Every node explained in language anyone can understand — from junior devs to product managers.',
9+
icon: '',
10+
title: 'Beyond Code Analysis',
11+
description: 'Analyze your entire project — Dockerfiles, Terraform, SQL, Markdown, and 26+ file types mapped into one unified graph.',
12+
},
13+
{
14+
icon: '',
15+
title: 'Smart Filtering & Search',
16+
description: 'Filter by node type, complexity, layer, or edge category. Fuzzy and semantic search to find anything instantly.',
17+
},
18+
{
19+
icon: '',
20+
title: 'Export & Share',
21+
description: 'Export your knowledge graph as high-quality PNG, SVG, or filtered JSON — ready for docs, presentations, or further analysis.',
22+
},
23+
{
24+
icon: '',
25+
title: 'Dependency Path Finder',
26+
description: 'Find the shortest path between any two components. Understand how parts of your system connect at a glance.',
1227
},
1328
{
1429
icon: '',
15-
title: 'Guided Tours',
16-
description: 'AI-generated walkthroughs that teach you the codebase step by step.',
30+
title: 'Guided Tours & Onboarding',
31+
description: 'AI-generated walkthroughs that teach the codebase step by step, plus onboarding guides for new team members.',
1732
},
1833
];
1934
---
2035

2136
<section class="features">
2237
<div class="features-grid">
2338
{features.map((f, i) => (
24-
<div class={`feature-card reveal reveal-delay-${i + 1}`}>
39+
<div class={`feature-card reveal reveal-delay-${(i % 3) + 1}`}>
2540
<span class="feature-icon">{f.icon}</span>
2641
<h3 class="feature-title">{f.title}</h3>
2742
<p class="feature-desc">{f.description}</p>

homepage/src/components/Footer.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const githubUrl = 'https://github.com/Lum1104/Understand-Anything';
1010
<span class="footer-sep">·</span>
1111
<a href={`${githubUrl}/blob/main/LICENSE`} target="_blank" rel="noopener noreferrer">License</a>
1212
</div>
13-
<p class="footer-note">Built as a Claude Code plugin</p>
13+
<p class="footer-note">Built for AI coding assistants</p>
1414
</div>
1515
</footer>
1616

homepage/src/components/Install.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<span class="cmd">/plugin install</span> understand-anything
1111
<span class="cmd">/understand</span></code></pre>
1212
</div>
13-
<p class="install-note">Works with <strong>Claude Code</strong> — Anthropic's official CLI for Claude.</p>
13+
<p class="install-note">Works with <strong>Claude Code</strong>, <strong>Codex</strong>, <strong>OpenCode</strong>, <strong>Gemini CLI</strong>, and more.</p>
1414
</div>
1515
</section>
1616

0 commit comments

Comments
 (0)