import { Header } from "@/components/header" import { StreamCanvas } from "@/components/stream-canvas" import { Button } from "@/components/ui/button" import { ArrowRight, Heart, Share2, Zap } from "lucide-react" import { SubmissionForm } from "@/components/submission-form" import { AllocationDashboard } from "@/components/allocation-dashboard" export default function Home() { return (
{/* Hero Section */}
Live Fund Streaming Active

Turn Kindness into
#RealValue

Submit your good deeds. The community directs the flow of funds to what matters most. Real-time rewards for real-world impact.

{/* Stats Grid */}
{[ { label: "Total Value Streamed", value: "$1,240,500", icon: Zap, color: "text-primary" }, { label: "Acts Rewarded", value: "15,420", icon: Heart, color: "text-secondary" }, { label: "Community Allocators", value: "8,930", icon: Share2, color: "text-accent" }, ].map((stat, i) => (

{stat.label}

{stat.value}

))}
{/* Submission Form Section */}

Share Your
Light with the World

Every act of kindness creates a ripple. When you share your story, you allow the community to recognize that value and amplify it through direct funding streams.

{[ { title: "Transparency", desc: "All allocations are visible on the public stream." }, { title: "Direct Impact", desc: "Funds flow directly to the acts deemed most valuable." }, { title: "Community Governed", desc: "The collective decides where the stream flows." }, ].map((item, i) => (

{item.title}

{item.desc}

))}
{/* Background blob for form */}
{/* Dashboard Section */}

The Flow of Kindness

Control the stream. Adjust the sliders to direct real-time value to the acts that resonate with you.

) }