fix(site): remove AI icon from the AI section

Drop the ai.svg glyph (and its import/flex styling) from the "AI when you want
it" section per founder review.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Viktor Vaczi 2026-06-07 17:44:33 +02:00
commit 80042a0672

View file

@ -1,27 +1,20 @@
---
import SectionBand from '../components/SectionBand.astro';
import Icon from '../components/Icon.astro';
---
<SectionBand tone="soft" labelledby="ai-h3">
<div class="ai">
<Icon name="icons/ai.svg" mode="img" size="2.5rem" alt="" class="ai-icon" />
<div>
<h3 id="ai-h3">AI when you want it — opt-in, never a black box.</h3>
<p class="muted">
Everyone else leads with an “AI hardware engineer.” We lead with <em>you</em> and an open
tool you control. AI assistance is on the roadmap as an <strong>opt-in</strong> helper —
never the thing standing between you and your own board.
</p>
</div>
<h3 id="ai-h3">AI when you want it — opt-in, never a black box.</h3>
<p class="muted">
Everyone else leads with an “AI hardware engineer.” We lead with <em>you</em> and an open
tool you control. AI assistance is on the roadmap as an <strong>opt-in</strong> helper —
never the thing standing between you and your own board.
</p>
</div>
</SectionBand>
<style>
.ai {
display: flex;
gap: 1rem;
align-items: flex-start;
max-width: 48rem;
}
.ai h3 {
@ -31,7 +24,4 @@ import Icon from '../components/Icon.astro';
.ai p {
margin: 0;
}
.ai-icon {
flex: none;
}
</style>