-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add wallet disconnected state (#116)
- Loading branch information
Showing
2 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
export const DisconnectedState = ({}: {}) => { | ||
return ( | ||
<div className="flex flex-col gap-3 max-w-prose justify-center self-center justify-self-center"> | ||
<h1 className="text-2xl font-bold text-white">AirSwap Voter Dashboard</h1> | ||
<p className="text-gray-500 text-[15px] leading-6"> | ||
<span> | ||
Connect your wallet to manage AST staking, vote on DAO proposals, and | ||
claim rewards for participating in the decentralized governance | ||
process.{" "} | ||
</span> | ||
</p> | ||
<p> | ||
<a | ||
className="underline text-gray-500 transition-colors hover:text-gray-50" | ||
href="https://about.airswap.io" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
Learn more | ||
</a> | ||
</p> | ||
</div> | ||
); | ||
}; |