Skip to content

Commit

Permalink
Update wallet info on homepage (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
siegfried authored Sep 6, 2023
1 parent 30065f7 commit ce19638
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,24 @@ const WalletTable: FC = () => {
<Image src='https://gerowallet.io/assets/img/logo2.ico' width={16} height={16} alt='Gero' /><span>Gero</span>
</div>
</td>
<td><div className='flex justify-center'><CheckIcon className='w-6 text-green-500' /></div></td>
<td><div className='flex justify-center'><CheckIcon className='w-6 text-green-500' /></div></td>
<td><div className='flex justify-center'><XMarkIcon className='w-6 text-red-500' /></div></td>
<td><div className='flex justify-center'><XMarkIcon className='w-6 text-red-500' /></div></td>
</tr>
<tr>
<td>
<div className='flex items-center justify-center space-x-1 p-1'>
<Image src={flintLogo} width={16} height={16} alt='Flint' /><span>Flint</span>
</div>
</td>
<td><div className='flex justify-center'><XMarkIcon className='w-6 text-red-500' /></div></td>
<td><div className='flex justify-center'><XMarkIcon className='w-6 text-red-500' /></div></td>
</tr>
<tr>
<td>
<div className='flex items-center justify-center space-x-1 p-1'>
<Image src='/typhon.svg' width={16} height={16} alt='Typhon' /><span>Typhon</span>
</div>
</td>
<td><div className='flex justify-center'><CheckIcon className='w-6 text-green-500' /></div></td>
<td><div className='flex justify-center'><CheckIcon className='w-6 text-green-500' /></div></td>
</tr>
Expand Down

0 comments on commit ce19638

Please sign in to comment.