import { Code2, Database, Cpu } from "lucide-react" const steps = [ { number: "01", icon: Code2, title: "Built on folkjs", description: "HTML as a computing substrate. Interactive, reactive interfaces using familiar web technologies - no complex frameworks required.", }, { number: "02", icon: Database, title: "Local-First Storage", description: "Your data lives on your device. Distributed sync protocols keep your rspace updated across the mesh without centralized servers.", }, { number: "03", icon: Cpu, title: "Zero-Knowledge Architecture", description: "All encryption happens on your device. Share selectively through cryptographic proofs. Nobody can access what they shouldn't see.", }, ] export function HowItWorks() { return (

Built Different

A new substrate for digital collaboration

{steps.map((step, index) => { const Icon = step.icon return (
{step.number}

{step.title}

{step.description}

) })}

Powered by folkjs - bringing the internet back to what it was always meant to be

A basic HTML computing substrate for building truly interactive, local-first applications

) }