import { Shield, Network, Users, Lock, Zap, Globe } from "lucide-react" const features = [ { icon: Network, title: "Distributed Architecture", description: "No central servers. No single point of failure. Your data lives on the mesh.", }, { icon: Lock, title: "Zero Knowledge", description: "End-to-end encrypted by default. Nobody can see your data, not even us.", }, { icon: Users, title: "Collaborative First", description: "Built for cooperation. Share resources, knowledge, and compute power.", }, { icon: Shield, title: "Democratic Governance", description: "Community-driven decisions. No corporate overlords controlling your experience.", }, { icon: Zap, title: "Local First", description: "Work offline. Sync when connected. Your data is always accessible.", }, { icon: Globe, title: "New Economic Models", description: "Fair value distribution. Contributors are rewarded, not exploited.", }, ] export function Features() { return (

A New Digital Foundation

Built on principles of freedom, privacy, and collective ownership. The internet as it should have been.

{features.map((feature, index) => (

{feature.title}

{feature.description}

))}
) }