From 17a2f3bc2a3b9e157659129525453f5873640ab2 Mon Sep 17 00:00:00 2001 From: pavania1 Date: Fri, 13 Sep 2024 12:31:43 +0530 Subject: [PATCH 1/4] chore: logo --- frontend/src/components/common/Footer.tsx | 4 ++-- frontend/src/components/main-layout/TopBar.tsx | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/common/Footer.tsx b/frontend/src/components/common/Footer.tsx index 72de2597d..5232d1c0f 100644 --- a/frontend/src/components/common/Footer.tsx +++ b/frontend/src/components/common/Footer.tsx @@ -11,8 +11,8 @@ const Footer = () => { height={20} alt="resolute-logo" /> */} -

RESOLUTE

-

Powered by vitwit

+

RESOLUTE

+

Powered by Vitwit

diff --git a/frontend/src/components/main-layout/TopBar.tsx b/frontend/src/components/main-layout/TopBar.tsx index 051c8285c..92d09c61e 100644 --- a/frontend/src/components/main-layout/TopBar.tsx +++ b/frontend/src/components/main-layout/TopBar.tsx @@ -38,15 +38,15 @@ const TopBar = () => {
))}
diff --git a/frontend/src/utils/constants.ts b/frontend/src/utils/constants.ts index ab8c49e11..fafa98e88 100644 --- a/frontend/src/utils/constants.ts +++ b/frontend/src/utils/constants.ts @@ -15,7 +15,7 @@ export const SUPPORTED_WALLETS = [ }, { name: 'Metamask', - logo: '/metamask.png', + logo: '/metamask.svg', } ]; From 64892b54d4fdcb81653198afb4d2c6912ddb7f6b Mon Sep 17 00:00:00 2001 From: pavania1 Date: Fri, 13 Sep 2024 12:33:05 +0530 Subject: [PATCH 3/4] chore: capitalize --- frontend/src/components/common/Footer.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/src/components/common/Footer.tsx b/frontend/src/components/common/Footer.tsx index 5232d1c0f..79e36fbfe 100644 --- a/frontend/src/components/common/Footer.tsx +++ b/frontend/src/components/common/Footer.tsx @@ -33,9 +33,9 @@ const Footer = () => { alt="telegram-logo" // className="w-5 h-5" /> -

telegram

+

telegram

-
+
{ alt="github-logo" // className="w-6 h-6" /> -

github

+

github

-
+
{ alt="twitter-logo" // className="w-6 h-6" /> -

twitter

+

twitter

-
+
{ alt="youtube-logo" className="w-6 h-6" /> -

youtube

+

youtube

From 9555a4bdb6ac435b8ef4d34c2b22dd318dedeedb Mon Sep 17 00:00:00 2001 From: pavania1 Date: Fri, 13 Sep 2024 12:46:49 +0530 Subject: [PATCH 4/4] chore: Metamask snap --- frontend/src/components/main-layout/ConnectWallet.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/main-layout/ConnectWallet.tsx b/frontend/src/components/main-layout/ConnectWallet.tsx index db563eef9..1fe532f43 100644 --- a/frontend/src/components/main-layout/ConnectWallet.tsx +++ b/frontend/src/components/main-layout/ConnectWallet.tsx @@ -115,7 +115,7 @@ const ConnectWallet = () => { alt={wallet.name} />

- {wallet.name === "metamask"?"Metamask Snap":wallet.name}

+ {wallet.name === "Metamask" ? "Metamask Snap":wallet.name}

))}