import { Card } from "@/components/ui/card" import { MapPin, Snowflake, Sprout, Users, Calendar, Coins } from "lucide-react" const examples = [ { icon: MapPin, title: "Litter Cleanup Bounties", description: "Map trash hotspots in your neighborhood, set bounties for cleanup tasks, track progress on an interactive dashboard, and reward community members who pitch in.", color: "text-primary", bgColor: "bg-primary/10", }, { icon: Snowflake, title: "Snow Shoveling Co-op", description: "Elderly neighbors need help? Create a schedule, assign volunteers, track completed driveways, and manage community appreciation funds—all in your rspace.", color: "text-secondary", bgColor: "bg-secondary/10", }, { icon: Sprout, title: "Lawn Care Exchange", description: "Trade services with neighbors: mow a lawn, earn credits for garden help. Track commitments, share equipment calendars, and build real community connections.", color: "text-accent", bgColor: "bg-accent/10", }, { icon: Users, title: "Community Tool Library", description: "Share tools collectively. Schedule borrowing, track inventory, split maintenance costs through shared funds, and reduce waste by owning things together.", color: "text-primary", bgColor: "bg-primary/10", }, { icon: Calendar, title: "Neighborhood Events", description: "Plan block parties, potlucks, or skill-sharing workshops. Poll for dates, coordinate food signups, and manage event budgets transparently.", color: "text-secondary", bgColor: "bg-secondary/10", }, { icon: Coins, title: "Local Mutual Aid", description: "Pool resources for emergency support. Transparent fund management, democratic decision-making on aid distribution, all with zero-knowledge privacy.", color: "text-accent", bgColor: "bg-accent/10", }, ] export function RealWorldExamples() { return (

Digital Spaces for Physical Impact

rspaces aren't just for chatting online—they're tools for making your{" "} real neighborhood better. Here's how communities are already using them:

{examples.map((example, index) => { const Icon = example.icon return (

{example.title}

{example.description}

) })}

Your space. Your community.{" "} Your rules.

) }