import { Card } from "@/components/ui/card" import { MessageSquare, FolderOpen, Shield, BarChart3, Coins, Lock } from "lucide-react" const features = [ { icon: Coins, title: "Shared Funds", description: "Allocate and manage community resources through transparent, customizable controls.", color: "text-primary", bgColor: "bg-primary/10", }, { icon: MessageSquare, title: "Secure Messaging", description: "End-to-end encrypted communication channels for your community. Nobody can read your messages, not even us.", color: "text-primary", bgColor: "bg-primary/10", }, { icon: FolderOpen, title: "File Sharing", description: "Share files and create collaborative views over data with localized, zero-knowledge storage.", color: "text-secondary", bgColor: "bg-secondary/10", }, { icon: Shield, title: "Delegated Authority", description: "Manage group permissions and authority structures democratically. Your space, your rules.", color: "text-accent", bgColor: "bg-accent/10", }, { icon: BarChart3, title: "Interactive Dashboards", description: "Multidimensional views of your data powered by folkjs - HTML as a computing substrate.", color: "text-secondary", bgColor: "bg-secondary/10", }, { icon: Lock, title: "Data Privacy", description: "Zero-knowledge architecture ensures your data never exists unencrypted outside your control.", color: "text-accent", bgColor: "bg-accent/10", }, ] export function Features() { return (

Shared Digital Spaces for Collaboration

Everything you need to build thriving communities outside big tech's surveillance apparatus

{features.map((feature, index) => { const Icon = feature.icon return (

{feature.title}

{feature.description}

) })}
) }