Rewrite landing to El component architecture

Full El component split: nav, hero, pillars, inference, pricing, footer, about,
enterprise, mission, viral, local_first, comparison, efficiency, environmental.

- About page rewritten first-person (Will's voice), photo included, no product spoilers
- Stripe checkout wired: env() reads STRIPE_SECRET_KEY/PRICE_* at startup
- Minor parent-onboarding callout added to pricing section
- Inference pricing: "at cost" removed, now "priced below competitors"
- Nav: wordmark image, About link active on /about
- .gitignore: excludes .env, dist/, generated HTML
This commit is contained in:
Will Anderson
2026-04-29 16:21:08 -05:00
parent 686ab1ee2f
commit 1d8143cdbc
27 changed files with 3165 additions and 1467 deletions
+61
View File
@@ -0,0 +1,61 @@
// components/inference.el Neuron inference section.
// "My model. My infrastructure. Cheaper than theirs."
fn inference() -> String {
return "
<section id=\"inference\" aria-label=\"Neuron inference\">
<div class=\"container\">
<div class=\"inference-grid\">
<div>
<div class=\"inference-label-row reveal\">
<div class=\"navy-line-left\" style=\"width:3rem;flex-shrink:0\"></div>
<span class=\"label\">Neuron inference &#8212; live day one</span>
</div>
<h2 class=\"display-lg inference-headline reveal\" style=\"transition-delay:80ms\">
My model. My infrastructure.
<span class=\"gold\"> Cheaper than theirs.</span>
</h2>
<p class=\"inference-body reveal\" style=\"transition-delay:160ms\">
Four companies control nearly all frontier AI inference today. Every query you send strengthens their position &#8212; and their pricing power over you. That changes today.
</p>
<p class=\"inference-body reveal\" style=\"transition-delay:240ms\">
Neuron is both the product and the model. Purpose-built for how Neuron thinks, how your context is structured, how to do more with fewer tokens. It runs on Soma, our own inference infrastructure. Priced below OpenAI, Anthropic, and Google from day one. Not as a loss leader. As a permanent competitive position.
</p>
<p class=\"inference-body reveal\" style=\"transition-delay:320ms\">
You can still route to your own API keys if you want &#8212; Anthropic, OpenAI, whoever. But when we&#39;re cheaper, faster, and the model knows Neuron&#39;s architecture from the inside, why would you?
</p>
<p class=\"inference-body reveal\" style=\"transition-delay:400ms\">
Every user on Neuron inference is compute that doesn&#39;t flow to the monopoly. That&#39;s not just a cost story. It&#39;s a power one.
</p>
</div>
<div class=\"inference-stats\">
<div class=\"stat-row reveal\">
<div class=\"stat-row-head\">
<span class=\"stat-num\">4</span>
<span class=\"stat-label\">Companies control frontier inference</span>
</div>
<p class=\"stat-body\">OpenAI, Google, Anthropic, Meta. Nearly every AI query flows through them. We&#39;re building the exit ramp.</p>
</div>
<div class=\"stat-row reveal\" style=\"transition-delay:120ms\">
<div class=\"stat-row-head\">
<span class=\"stat-num\">Neuron</span>
<span class=\"stat-label\">The model &#8212; live on day one</span>
</div>
<p class=\"stat-body\">Built on Qwen3 &#8212; open weights, Sonnet-equivalent capability. Neuron wraps it with your full context, your memory graph, and years of accumulated intelligence. The model is the floor. Neuron is the ceiling.</p>
</div>
<div class=\"stat-row reveal\" style=\"transition-delay:240ms\">
<div class=\"stat-row-head\">
<span class=\"stat-num\">&lt; theirs</span>
<span class=\"stat-label\">Priced below the incumbents</span>
</div>
<p class=\"stat-body\">Below OpenAI&#39;s API pricing at launch. Below Anthropic&#39;s. Below Google&#39;s. Metered &#8212; you pay for what you use, not a flat subscription. And cheaper than any of them on every tier.</p>
</div>
</div>
</div>
</div>
</section>
"
}