fix: clickable logo
This commit is contained in:
parent
487c5de10a
commit
47bdaf9b88
|
@ -8,6 +8,7 @@ export const Header = ({}: Props) => {
|
||||||
return (
|
return (
|
||||||
<header className="w-full flex flex-row justify-between relative">
|
<header className="w-full flex flex-row justify-between relative">
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
|
<Link href="/">
|
||||||
<Web3NewsLogo />
|
<Web3NewsLogo />
|
||||||
<div className="relative mt-1">
|
<div className="relative mt-1">
|
||||||
<Image
|
<Image
|
||||||
|
@ -21,12 +22,19 @@ export const Header = ({}: Props) => {
|
||||||
a Lume project
|
a Lume project
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex gap-3 font-normal flex-row text-gray-300 rounded">
|
<div className="flex gap-3 font-normal flex-row text-gray-300 rounded">
|
||||||
<Link href="/about" className="hover:text-white p-2 px-4 hover:bg-gray-800 rounded">
|
<Link
|
||||||
|
href="/about"
|
||||||
|
className="hover:text-white p-2 px-4 hover:bg-gray-800 rounded"
|
||||||
|
>
|
||||||
About
|
About
|
||||||
</Link>
|
</Link>
|
||||||
<Link href="/donate" className="hover:text-white p-2 px-4 hover:bg-gray-800 rounded">
|
<Link
|
||||||
|
href="/donate"
|
||||||
|
className="hover:text-white p-2 px-4 hover:bg-gray-800 rounded"
|
||||||
|
>
|
||||||
Contribute
|
Contribute
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue