Skip to content

Commit

Permalink
refactor: Reorder navbar items
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinszuchet committed Oct 18, 2024
1 parent 672a14d commit cd5702e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/Navbar/MainMenu/MainMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,6 @@ export const MainMenu = (props: MainMenuProps) => {
title={i18n.create}
mainUrl={urls[NavbarPages.CREATE]}
/>
<MenuItem
{...menuItemProps}
section={NavbarPages.EXPLORE}
title={i18n.explore}
mainUrl={urls[NavbarPages.EXPLORE]}
/>
<MenuItem
{...menuItemProps}
section={NavbarPages.LEARN}
Expand All @@ -51,6 +45,12 @@ export const MainMenu = (props: MainMenuProps) => {
title={i18n.governance}
mainUrl={urls[NavbarPages.GOVERNANCE]}
/>
<MenuItem
{...menuItemProps}
section={NavbarPages.EXPLORE}
title={i18n.explore}
mainUrl={urls[NavbarPages.EXPLORE]}
/>
</div>
)
}

0 comments on commit cd5702e

Please sign in to comment.