import { useState } from 'react'; import { useWalletStore } from '../store/wallet'; export default function ReceivePage() { const { address } = useWalletStore(); const [copied, setCopied] = useState(false); const handleCopy = async () => { if (address) { await navigator.clipboard.writeText(address); setCopied(true); setTimeout(() => setCopied(false), 2000); } }; return (

Receive SYNOR

{/* QR Code placeholder */}
{/* In production, render actual QR code */}
QR Code
{/* Address */}

Share this address to receive SYNOR. Only send SYNOR to this address - other cryptocurrencies will be lost.

{/* Request Payment (optional feature) */}

Request Payment

SYNOR
); }