import { Button } from '@/components/ui/button' import { SMESH_PUBKEY } from '@/constants' import { cn } from '@/lib/utils' import { useState } from 'react' import ZapDialog from '../ZapDialog' import RecentSupporters from './RecentSupporters' export default function Donation({ className }: { className?: string }) { const [open, setOpen] = useState(false) const [donationAmount, setDonationAmount] = useState(undefined) return (
Can Youse Paradigm?
Every hour you don't zap, a donkey eats another cabbage. You can stop this. 🫏
{[ { amount: 1000, text: '🥬 1k' }, { amount: 10000, text: '🫏 10k' }, { amount: 100000, text: '🥬🫏 100k' }, { amount: 1000000, text: '🥬🫏🥬🫏 1M' } ].map(({ amount, text }) => { return ( ) })}
) }