import React, { ReactElement } from 'react' import { Helmet } from 'react-helmet' import { useSiteMetadata } from '../hooks/use-site-metadata' import Icon from '../components/atoms/Icon' import * as styles from './thanks.module.css' import Web3Donation from '../components/molecules/Web3Donation' import Copy from '../components/atoms/Copy' import { RainbowKitProvider } from '@rainbow-me/rainbowkit' import { WagmiConfig } from 'wagmi' import { chains, theme, wagmiClient } from '../helpers/rainbowkit' function Coin({ address, title }: { address: string; title: string }) { return (

{title}

        {address}
        
      
) } const BackButton = () => ( ) export default function Thanks(): ReactElement { const { author } = useSiteMetadata() const coins = Object.entries(author).filter( ([key]) => key === 'bitcoin' || key === 'ether' ) return ( <> Say thanks

Say Thanks

Send Bitcoin or ERC-20 tokens from any wallet.

{coins.map(([key, value]) => ( ))}
) }