mango-web/components/Navigation.tsx

30 lines
893 B
TypeScript
Raw Normal View History

2021-03-17 07:01:37 -07:00
export const TradeUrl = "https://trade.mango.markets";
export const StatsUrl = `${TradeUrl}/#/stats`;
export const LearnUrl = "https://docs.mango.markets";
export function Navigation() {
return (
2021-03-07 20:56:22 -08:00
<div className="flex items-center">
<div className="flex items-center md:mr-8">
<img height="50px" width="50px" src="/mango.png" className="inline-block" />
<span className="hidden md:inline-block text-3xl text-white ml-4 font-black">
Mango Markets
</span>
</div>
2021-03-17 07:01:37 -07:00
<a href={TradeUrl} className="ml-2 sm:ml-14 font-light text-white text-xl sm:text-2xl">
2021-03-07 20:56:22 -08:00
Trade
</a>
2021-03-17 07:01:37 -07:00
<a href={StatsUrl} className="ml-8 sm:ml-16 font-light text-white text-xl sm:text-2xl">
2021-03-07 20:56:22 -08:00
Stats
</a>
2021-03-17 07:01:37 -07:00
<a href={LearnUrl} className="ml-8 sm:ml-16 font-light text-white text-xl sm:text-2xl">
2021-03-07 20:56:22 -08:00
Learn
</a>
2021-03-03 11:15:38 -08:00
</div>
);
2021-03-17 07:01:37 -07:00
};