import React, { ReactElement } from 'react' import { HeadProps } from 'gatsby' import { RainbowKitProvider } from '@rainbow-me/rainbowkit' import { WagmiConfig } from 'wagmi' import Copy from '../components/atoms/Copy' import Meta, { HeadMetaProps } from '../components/atoms/HeadMeta' import Icon from '../components/atoms/Icon' import Web3Donation from '../components/molecules/Web3Donation' import { chains, theme, wagmiClient } from '../helpers/rainbowkit' import { useSiteMetadata } from '../hooks/useSiteMetadata' import * as styles from './thanks.module.css' const meta: Partial = { title: `Say Thanks` } 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 (

{meta.title}

Send Bitcoin or ERC-20 tokens from any wallet.

{coins.map(([key, value]) => ( ))}
) } export function Head(props: HeadProps) { return ( ) }