30 lines
765 B
TypeScript
30 lines
765 B
TypeScript
import React from "react";
|
|
import Link from "next/link";
|
|
|
|
const Navigation = () => {
|
|
return (
|
|
<div className="flex justify-between items-center px-6 py-3">
|
|
<Link href="/" passHref>
|
|
<a>
|
|
<img src="/logo.svg" alt="mars" />
|
|
</a>
|
|
</Link>
|
|
<div className="flex px-12 gap-5">
|
|
<Link href="/trade">Trade</Link>
|
|
<Link href="/yield">Yield</Link>
|
|
<Link href="/borrow">Borrow</Link>
|
|
<Link href="/portfolio">Portfolio</Link>
|
|
<Link href="/council">Council</Link>
|
|
</div>
|
|
<button
|
|
className="rounded-3xl bg-green-500 py-2 px-3 font-semibold"
|
|
onClick={() => alert("TODO")}
|
|
>
|
|
Connect Wallet
|
|
</button>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Navigation;
|