field-guide / src /lib /components /BigIdea.svelte
pngwn
Add partner logos, nav popout menu, FAQ updates; fix scroll-spy
560169d
Raw
History Blame Contribute Delete
888 Bytes
<script lang="ts">
import { EVENT } from '$lib/data/content';
import TopoBackdrop from './TopoBackdrop.svelte';
</script>
<section class="section on-dark" id="idea">
<TopoBackdrop opacity={0.1} stroke="rgba(244,238,225,.5)" />
<div class="wrap" style="position:relative">
<div>
<span class="eyebrow">The big idea</span>
<p
class="display"
style="font-size:clamp(28px,4.4vw,52px);font-weight:700;margin-top:22px;max-width:18ch;line-height:1.05"
>
The future of AI doesn’t have to live in someone else’s data center.
</p>
<p class="lede" style="margin-top:24px;max-width:60ch">
Build Small is a return to small, local, tinkerable models. Open weights you can read, run
and reshape — everything under {EVENT.paramCap} parameters, humming away on hardware you actually
own. Less API bill, more workshop.
</p>
</div>
</div>
</section>