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}

))}
{/* Kind Acts Pool explanation section */}
{/* Background gradient */}

The Kind Acts Pool

A communal fund that anyone can contribute to, and the community collectively directs toward acts of kindness

Open Contribution

Anyone can seed the Kind Acts Pool with funds. Every contribution grows the collective ability to reward kindness in the community.

Community Allocation

Members direct the flow of funds to acts they find meaningful. The more acts of kindness you've done, the greater your allocation power.

No Account Required to Receive

Recipients don't need to be members. They receive an email notification that #RealValue is waiting for them as a reward for their kindness.

Earn Allocation Power

Do more acts of kindness, gain more influence. Your history of good deeds amplifies your voice in directing the pool to others.

Current Pool Balance

$18,450

{/* 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.

) }