From 8c8a7cb18ff8a5e326a05558b12e144b3c2fdf85 Mon Sep 17 00:00:00 2001 From: Gustavo Mauricio Date: Tue, 6 Sep 2022 16:16:58 +0100 Subject: [PATCH] navigation bars wip --- components/Navigation.tsx | 71 +++++++++++++++++++++++++++++---------- 1 file changed, 53 insertions(+), 18 deletions(-) diff --git a/components/Navigation.tsx b/components/Navigation.tsx index 3d422f4b..054dfafc 100644 --- a/components/Navigation.tsx +++ b/components/Navigation.tsx @@ -1,27 +1,62 @@ import React from "react"; import Link from "next/link"; +const mockedAccounts = [ + { + label: "Subaccount 1", + }, + { + label: "Subaccount 2", + }, + { + label: "Subaccount 3", + }, + { + label: "Subaccount 4", + }, +]; + const Navigation = () => { return ( -
- - - mars - - -
- Trade - Yield - Borrow - Portfolio - Council +
+ {/* Main navigation bar */} +
+ + + mars + + +
+ Trade + Yield + Borrow + Portfolio + Council +
+ +
+ {/* Sub navigation bar */} +
+
+ {mockedAccounts.map((account, index) => ( +
+ {account.label} +
+ ))} +
More
+
Manage
+
+
+

$: 2500

+
Lvg Gauge
+
Risk Gauge
+
-
); };