import { Usb, Wifi, Share2 } from "lucide-react" const steps = [ { icon: Usb, number: "01", title: "Get Your USB Key", description: "A physical device that contains your identity, encryption keys, and access credentials. Your sovereignty in hardware form.", }, { icon: Wifi, number: "02", title: "Connect to the Mesh", description: "Plug in anywhere there's a local alltornet node. Instantly access the distributed network without corporate gatekeepers.", }, { icon: Share2, number: "03", title: "Collaborate Freely", description: "Share files, compute, and ideas. Contribute to the commons. Build the future together.", }, ] export function HowItWorks() { return (
{/* Subtle pattern */}

How It Works

Three simple steps to break free from the legacy internet

{steps.map((step, index) => (
{step.number}

{step.title}

{step.description}

))}
) }