import { ConnectWallet, useAddress } from '@thirdweb-dev/react' import styles from '../styles/Home.module.css' import Link from 'next/link' import sendEther from '../utils/common' export default function Navbar() { const address = useAddress(); const handleSendEther = async () => { try { const hash = await sendEther(address); // setTransactionHash(hash); } catch (error) { console.error('Error sending Ether:', error); } }; return (

Mint NFT

{address && (

My NFTs

)}
{address && (

Faucet

)}
) }