Skip to content

Commit 6ad3013

Browse files
Tarun SharmaTarun Sharma
authored andcommitted
Resized the logo and updated it in the footer and navbar
1 parent f89f49e commit 6ad3013

File tree

4 files changed

+14
-22
lines changed

4 files changed

+14
-22
lines changed

public/images/logo/Logo.svg

Lines changed: 4 additions & 0 deletions
Loading

public/images/logo/white_logo.png

-104 KB
Binary file not shown.

src/components/Global/Footer.js

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -45,29 +45,20 @@ const Footer = () => {
4545
<div className="flex justify-center text-teal-600 sm:justify-start">
4646
<a href="https://webxdao.github.io/">
4747
<span className="sr-only">WebX DAO</span>
48-
<img
49-
className="w-auto h-16 sm:h-10"
50-
src="/images/logo/white_logo.png"
51-
alt=""
52-
/>
48+
<img className="w-auto h-16 sm:h-10 md:h-12" src="/images/logo/Logo.svg" alt="" />
5349
</a>
5450
</div>
55-
{/*
51+
{/*
5652
<p className="max-w-md mx-auto mt-6 leading-relaxed text-center text-white/80 sm:max-w-xs sm:mx-0 sm:text-left">
5753
Add organization description here!
58-
</p> */}
54+
</p>*/}
5955
</div>
6056

6157
<div className="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:col-span-2 md:grid-cols-4">
6258
{navigation.map((item) => (
6359
<>
64-
<div
65-
key={item.name + "_footer"}
66-
className="sm:text-left"
67-
>
68-
<p className="text-lg sm:text-sm font-medium text-white/90">
69-
{item.name}
70-
</p>
60+
<div key={item.name + "_footer"} className="sm:text-left">
61+
<p className="text-lg sm:text-sm font-medium text-white/90">{item.name}</p>
7162

7263
<nav className="mt-4 sm:mt-8" aria-label={item.name}>
7364
<ul className="space-y-4 text-sm">
@@ -98,10 +89,7 @@ const Footer = () => {
9889
<p className="mt-1 text-sm text-gray-500 sm:order-first sm:mt-0">
9990
<span className="flex items-center justify-center">
10091
&copy; {new Date().getFullYear()} Made with
101-
<SiGithubsponsors
102-
className="w-3 h-3 m-2 text-pink-600"
103-
aria-hidden="true"
104-
/>
92+
<SiGithubsponsors className="w-3 h-3 m-2 text-pink-600" aria-hidden="true" />
10593
by WebX DAO
10694
</span>
10795
</p>

src/components/Global/Navbar.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ const Navbar = () => {
2525
<div className="flex items-center justify-between w-full md:w-auto">
2626
<Link href="/">
2727
<>
28-
<a href="https://webxdao.github.io/">
29-
<span className="sr-only ">WebX DAO</span>
28+
<a href="https://webxdao.github.io/">
29+
<span className="sr-only ">WebX DAO</span>
3030
<img
31-
className="h-10 w-auto sm:h-10 cursor-pointer"
32-
src="/images/logo/white_logo.png"
31+
className="h-10 w-auto sm:h-10 md:h-12 cursor-pointer"
32+
src="/images/logo/Logo.svg"
3333
alt="WebX DAO White Logo"
3434
/>
3535
</a>

0 commit comments

Comments
 (0)