diff --git a/apps/web/src/app/page.tsx b/apps/web/src/app/page.tsx index 089f03f..dd83bab 100644 --- a/apps/web/src/app/page.tsx +++ b/apps/web/src/app/page.tsx @@ -61,12 +61,30 @@ export default function Page() {
- You are 1 of {councilMembers?.length} council members, holding{" "} - {((votingPower / totalVotingPower) * 100).toFixed(2)}% of the total - voting power. Your vote plays a significant role in determining how - the budget is allocated to projects. Use your influence wisely. -
+ !address ? ( ++ Connect your wallet to view your voting power and budget + allocation. +
+ ) : ( + <> + {votingPower ? ( ++ You are 1 of {councilMembers?.length} council members, holding{" "} + {((votingPower / totalVotingPower) * 100).toFixed(2)}% of the + total voting power. Your vote plays a significant role in + determining how the budget is allocated to projects. Use your + influence wisely. +
+ ) : ( ++ You are not currently a council member. Only council members + have voting power and can influence budget allocations. Stay + tuned for future opportunities to join the council. +
+ )} + > + ) ) : ( <>