'use client' import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from '@/components/ui/card' import { Button } from '@/components/ui/button' import { Bitcoin, CircleDollarSign, Copy, Github, Heart, MessageSquare, Star, Wallet, Shield, Coins, } from 'lucide-react' import Link from 'next/link' import { ExternalLinks } from '@/config/external-links' import { useToast } from '@/hooks/use-toast' import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogTrigger, } from '@/components/ui/dialog' const cryptoWallets = [ { name: 'Bitcoin (BTC)', address: 'bc1qhffsnhp8ynqy6xvh982cu0x5w7vguuum3nqae9', network: 'Bitcoin', }, { name: 'Ethereum (ETH)', address: '0xDB8560a42bdaa42C58462C6b2ee5A7D36F1c1f2a', network: 'Ethereum (ERC20)', }, { name: 'Tether (USDT)', address: '0xDB8560a42bdaa42C58462C6b2ee5A7D36F1c1f2a', network: 'Ethereum (ERC20)', }, // { // name: 'Tether (USDT)', // address: 'TD6txzY61D6EgnVfMLPsqKhYfyV5iHrbkw', // network: 'Tron (TRC20)', // }, { name: 'Monero (XMR)', address: '856J5eHJM7bgBhkc51oCuMYUGKvUvF1zwAWrQsqwuH1shG9qnX4YkoZbMmhCPep1JragY2W1hpzAnDda6BXvCgZxUJhUyTg', network: 'Monero (XMR)', }, ] export default function ContributePage() { const { toast } = useToast() const handleCopy = (text: string, type: string) => { navigator.clipboard.writeText(text) toast({ title: `${type} address copied to clipboard`, }) } return (
Your contribution, whether financial or through code, helps keep this project alive and growing.