mango-web/components/Navigation.tsx

50 lines
1.2 KiB
TypeScript
Raw Normal View History

2021-03-01 15:47:49 -08:00
import { Menu } from "antd";
export default function Navigation() {
return (
2021-03-03 11:15:38 -08:00
<div className="pt-4 pl-6 md:pl-8">
2021-03-01 12:16:25 -08:00
<Menu
mode="horizontal"
selectedKeys={[]}
2021-03-01 21:20:53 -08:00
style={{
background: "none",
borderBottom: "none",
2021-03-03 11:15:38 -08:00
padding: 0,
2021-03-01 21:20:53 -08:00
fontSize: 16,
}}
2021-03-01 12:16:25 -08:00
>
2021-03-03 11:15:38 -08:00
<Menu.Item key="/" disabled style={{ marginLeft: 0 }}>
<div className="flex items-center">
<img
height="40px"
width="40px"
src="/mango.png"
className="inline-block"
/>
<span
style={{
color: "white",
fontWeight: 700,
marginRight: "1em",
marginLeft: 8,
}}
className="hidden md:inline-block text-xl"
>
Mango Markets
</span>
</div>
</Menu.Item>
<Menu.Item key="trade">
2021-03-01 12:16:25 -08:00
<a href="/trade">Trade</a>
</Menu.Item>
<Menu.Item key="stats">
<a href="/trade">Stats</a>
</Menu.Item>
<Menu.Item key="help">
<a href="/trade">Help</a>
</Menu.Item>
</Menu>
2021-03-03 11:15:38 -08:00
</div>
);
2021-03-01 12:16:25 -08:00
}