From 2bc467190fe371a3891ef72b690236bb6a9bfcae Mon Sep 17 00:00:00 2001 From: harshitg927 Date: Mon, 13 Jan 2025 23:47:24 +0530 Subject: [PATCH] feat(nav): Add home link to top of side navigation bar --- frontend/src/components/layout/Header.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frontend/src/components/layout/Header.js b/frontend/src/components/layout/Header.js index b1692ad196..e9c956ca8e 100644 --- a/frontend/src/components/layout/Header.js +++ b/frontend/src/components/layout/Header.js @@ -579,6 +579,15 @@ function OEHeader(props) { isPersistent={false} > + {/* Adding the home link at the top in the side navigation bar */} + + + + + {/* Adding other links after the home in the side navigation bar */} {menus["menu"].map((childMenuItem, index) => { // ignore the Home Menu in the new UI if (childMenuItem.menu.elementId != "menu_home") {