feat: Add links to feature descriptions in home.html

This commit is contained in:
Paul Gauthier (aider) 2025-03-19 09:29:47 -07:00
parent a172d15463
commit 574ab6bdda

View file

@ -173,6 +173,16 @@
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.feature-card a {
color: var(--primary);
text-decoration: none;
transition: color 0.3s;
}
.feature-card a:hover {
text-decoration: underline;
}
.feature-icon {
font-size: 2rem;
color: var(--primary);
@ -430,32 +440,32 @@
<div class="feature-card">
<div class="feature-icon">🔄</div>
<h3 class="feature-title">Seamless Git Integration</h3>
<p>Aider automatically commits changes with sensible commit messages, making version control seamless.</p>
<p><a href="https://aider.chat/docs/git.html">Aider automatically commits changes with sensible commit messages</a>, making version control seamless.</p>
</div>
<div class="feature-card">
<div class="feature-icon">📝</div>
<h3 class="feature-title">Multiple File Editing</h3>
<p>Edit multiple files at once for complex requests, making large-scale changes easier.</p>
<p><a href="https://aider.chat/docs/usage.html">Edit multiple files at once for complex requests</a>, making large-scale changes easier.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🗺️</div>
<h3 class="feature-title">Repository Mapping</h3>
<p>Uses a map of your entire git repo, which helps it work well in larger codebases.</p>
<p><a href="https://aider.chat/docs/repomap.html">Uses a map of your entire git repo</a>, which helps it work well in larger codebases.</p>
</div>
<div class="feature-card">
<div class="feature-icon">👁️</div>
<h3 class="feature-title">Real-time File Watching</h3>
<p>Edit files in your editor while chatting with aider, and it will always use the latest version.</p>
<p><a href="https://aider.chat/docs/usage/watch.html">Edit files in your editor while chatting with aider</a>, and it will always use the latest version.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🖼️</div>
<h3 class="feature-title">Image & URL Support</h3>
<p>Add images to the chat and share URLs, helping with visual context and references.</p>
<p><a href="https://aider.chat/docs/usage/images-urls.html">Add images to the chat and share URLs</a>, helping with visual context and references.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🗣️</div>
<h3 class="feature-title">Voice Coding</h3>
<p>Code with your voice for an even more natural programming experience.</p>
<p><a href="https://aider.chat/docs/usage/voice.html">Code with your voice</a> for an even more natural programming experience.</p>
</div>
</div>
</div>