84 lines
5.4 KiB
EmacsLisp
84 lines
5.4 KiB
EmacsLisp
// components/local_first.el - Privacy principles / local-first manifesto.
|
|
// Left: manifesto text. Right: six sticky principles.
|
|
|
|
fn local_first() -> String {
|
|
return "
|
|
<section id=\"local-first\" aria-label=\"Local-first\">
|
|
<div class=\"container-lg\">
|
|
|
|
<div class=\"lf-label-row reveal\">
|
|
<div class=\"navy-line-left\" style=\"width:3rem;flex-shrink:0\"></div>
|
|
<span class=\"label\" style=\"color:var(--navy-85)\">Local first</span>
|
|
</div>
|
|
|
|
<div class=\"lf-grid\">
|
|
|
|
<div>
|
|
<h2 class=\"display-lg lf-headline reveal\">You are not the product.</h2>
|
|
|
|
<p class=\"lf-manifesto-para reveal\" style=\"transition-delay:100ms\">
|
|
The company that gave you free search built the most powerful ad-targeting machine in history. The one that promised to connect the world optimized it for outrage - because outrage drives engagement, and engagement drives revenue. The one that gave everyone a voice sold that attention to the highest bidder. These aren't accidents. They're the business model.
|
|
</p>
|
|
<p class=\"lf-manifesto-para reveal\" style=\"transition-delay:200ms\">
|
|
I've watched this play out across two decades. Every free product is the same transaction: something useful in exchange for something you didn't know you were selling - your attention, your behavior, your future choices. The product is always “free.” The price is always you.
|
|
</p>
|
|
<p class=\"lf-manifesto-para reveal\" style=\"transition-delay:300ms\">
|
|
The harm is real. Teenage depression rates tracked the rise of algorithmic social feeds. Political polarization accelerated when engagement algorithms learned that outrage outperformed nuance. Billions of people had their data harvested, leaked, and weaponized - often without knowing. Democratic processes were manipulated at scale. And in every case, the companies responsible kept growing.
|
|
</p>
|
|
<p class=\"lf-manifesto-para reveal\" style=\"transition-delay:400ms\">
|
|
Now AI is doing the same thing - faster and deeper. Your queries train their models. Your thought patterns become datasets. The way you reason, what you struggle with, what you're afraid of - it's all captured. You get a useful tool. They get a map of your mind.
|
|
</p>
|
|
<div class=\"lf-manifesto-closer reveal\" style=\"transition-delay:600ms\">
|
|
<p>
|
|
Neuron is a direct rejection of that model. It runs on your machine. <strong>Your memory never leaves.</strong> I don't sell data, serve ads, or profile you. The only thing I sell is the software - and once you have it, it's yours.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class=\"lf-principles\">
|
|
|
|
<div class=\"lf-principle reveal\">
|
|
<p class=\"lf-principle-label\">Your machine. Full stop.</p>
|
|
<p class=\"lf-principle-body\">Neuron runs on your hardware. The memory, the agent loop, every conversation - none of it leaves your machine. Not to my servers. Not to anyone's.</p>
|
|
</div>
|
|
|
|
<div class=\"lf-principle reveal\" style=\"transition-delay:120ms\">
|
|
<p class=\"lf-principle-label\">No training on your data.</p>
|
|
<p class=\"lf-principle-body\">Your queries don't improve a model you don't own. Your patterns aren't analyzed to serve you better ads. Your context belongs to you - not a training pipeline.</p>
|
|
</div>
|
|
|
|
<div class=\"lf-principle reveal\" style=\"transition-delay:240ms\">
|
|
<p class=\"lf-principle-label\">No ads. Ever.</p>
|
|
<p class=\"lf-principle-body\">Not on the free tier. Not on paid. Not in any future version. Ads require surveillance. Surveillance requires your data. I'm not building that.</p>
|
|
</div>
|
|
|
|
<div class=\"lf-principle reveal\" style=\"transition-delay:360ms\">
|
|
<p class=\"lf-principle-label\">No telemetry for local use.</p>
|
|
<p class=\"lf-principle-body\">When Neuron runs locally, I don't collect usage data. When you opt into Neuron cloud services - sync, backup, inbox - those services use the data they need to function. Nothing more.</p>
|
|
</div>
|
|
|
|
<div class=\"lf-principle reveal\" style=\"transition-delay:480ms\">
|
|
<p class=\"lf-principle-label\">Nothing to breach.</p>
|
|
<p class=\"lf-principle-body\">I can't be hacked for your data because I don't have it. I can't be subpoenaed for your conversations because I've never seen them. I can't expose what I've never held. Your data living on your machine isn't just a privacy stance - it's a security one.</p>
|
|
</div>
|
|
|
|
<div class=\"lf-principle reveal\" style=\"transition-delay:600ms\">
|
|
<p class=\"lf-principle-label\">Unreadable even if taken.</p>
|
|
<p class=\"lf-principle-body\">Everything Neuron touches is encrypted with post-quantum cryptography - ML-KEM for key exchange, ML-DSA for signatures. Both are NIST-finalized standards (FIPS 203/204), already deployed at scale across the web. Designed to withstand quantum computers, not just the ones that exist today.</p>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class=\"lf-callout reveal\">
|
|
<p class=\"lf-callout-h\">The industry remembers you for them.</p>
|
|
<p class=\"lf-callout-h2\">Neuron remembers you for you.</p>
|
|
<p class=\"lf-callout-sub\">Local-first isn't a feature. It's a commitment.</p>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
"
|
|
}
|