Skip to content

Commit

Permalink
Merge branch 'v2/dev' of https://github.com/vitwit/resolute into pava…
Browse files Browse the repository at this point in the history
…nia1/authz-illustrations
  • Loading branch information
pavania1 committed Sep 13, 2024
2 parents c224e08 + 26c901b commit a29e8fb
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 14 deletions.
1 change: 1 addition & 0 deletions frontend/public/metamask.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 9 additions & 9 deletions frontend/src/components/common/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ const Footer = () => {
height={20}
alt="resolute-logo"
/> */}
<p className="text-h1">RESOLUTE</p>
<p className="text-b1 opacity-50">Powered by vitwit</p>
<p className="text-h1 !font-semibold tracking-[1.5px]">RESOLUTE</p>
<p className="text-b1 opacity-50">Powered by Vitwit</p>
</div>

<div className="text-b1">
Expand All @@ -33,9 +33,9 @@ const Footer = () => {
alt="telegram-logo"
// className="w-5 h-5"
/>
<p className="">telegram</p>
<p className="capitalize">telegram</p>
</a>
<div className='v-line !h-10'></div>
<div className="v-line !h-10"></div>
<a
className="flex gap-2 items-center"
href="https://github.com/vitwit/resolute"
Expand All @@ -49,9 +49,9 @@ const Footer = () => {
alt="github-logo"
// className="w-6 h-6"
/>
<p> github</p>
<p className="capitalize"> github</p>
</a>
<div className='v-line !h-10'></div>
<div className="v-line !h-10"></div>
<a
className="flex gap-2 items-center"
href="https://twitter.com/vitwit_"
Expand All @@ -65,9 +65,9 @@ const Footer = () => {
alt="twitter-logo"
// className="w-6 h-6"
/>
<p>twitter</p>
<p className="capitalize">twitter</p>
</a>
<div className='v-line !h-10'></div>
<div className="v-line !h-10"></div>
<a
className="flex gap-2 items-center"
href="https://www.youtube.com/@vitwit8623"
Expand All @@ -81,7 +81,7 @@ const Footer = () => {
alt="youtube-logo"
className="w-6 h-6"
/>
<p>youtube</p>
<p className="capitalize">youtube</p>
</a>
</div>
</div>
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/components/main-layout/ConnectWallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ const ConnectWallet = () => {
height={100}
alt={wallet.name}
/>
<p className="text-b1">{wallet.name}</p>
<p className="text-b1">
{wallet.name === "Metamask" ? "Metamask Snap":wallet.name}</p>
</div>
))}
<div className="p-6 h-[18px]"></div>
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/components/main-layout/TopBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ const TopBar = () => {
<nav className="flex justify-between items-center px-4 py-2">
<div className="flex items-center space-x-1">
<Link href="/" legacyBehavior>
<a className="flex items-center space-x-1">
<a className="flex items-center gap-1">
<Image
src="/vitwit-logo.svg"
width={35}
width={32}
height={21}
alt="Resolute"

/>
<span className="text-h1">RESOLUTE</span>
<span className="text-h1 !font-semibold tracking-[1.5px]">RESOLUTE</span>
</a>
</Link>
</div>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const SUPPORTED_WALLETS = [
},
{
name: 'Metamask',
logo: '/metamask.png',
logo: '/metamask.svg',
}
];

Expand Down

0 comments on commit a29e8fb

Please sign in to comment.