diff --git a/app/home/HomePage.tsx b/app/home/HomePage.tsx index 3676ad88..aa9c2801 100644 --- a/app/home/HomePage.tsx +++ b/app/home/HomePage.tsx @@ -1,6 +1,7 @@ 'use client'; import React, { useState, useEffect } from 'react'; +import { useAccount } from 'wagmi'; import PrimaryButton from '@/components/common/PrimaryButton'; import Footer from '@/components/layout/footer/Footer'; import backgroundImage from '@/imgs/bg/bg.png'; @@ -16,6 +17,8 @@ export default function HomePage() { return () => clearInterval(interval); }, []); + const { address } = useAccount(); + return (