Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Commit

Permalink
Change order of top nav-bar links (#232)
Browse files Browse the repository at this point in the history
* change order of navbar links

* Create update-top-nav-bar-links-order.md

* fix indentation

---------

Co-authored-by: Yaiza <[email protected]>
  • Loading branch information
memolina2323 and y4izus authored Jun 15, 2023
1 parent dcac93b commit 9b2a18b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 21 deletions.
5 changes: 5 additions & 0 deletions .changeset/update-top-nav-bar-links-order.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@qiskit/web-components": patch
---

Change order of top nav-bar links
42 changes: 21 additions & 21 deletions components/ui-shell/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,27 +55,6 @@ export const SOCIAL_LINKS: SocialLinks[] = [
];

export const NAV_ITEMS: TopLevelNavItem[] = [
{
label: 'Learn',
url: 'https://qiskit.org/learn/',
},
{
label: 'Community',
children: [
{
label: 'Events',
url: 'https://qiskit.org/events/',
},
{
label: 'Advocates',
url: 'https://qiskit.org/advocates/',
},
{
label: 'Ecosystem',
url: 'https://qiskit.org/ecosystem/',
},
],
},
{
label: 'Documentation',
isMegaMenu: true,
Expand Down Expand Up @@ -176,6 +155,27 @@ export const NAV_ITEMS: TopLevelNavItem[] = [
label: 'Providers',
url: 'https://qiskit.org/providers/',
},
{
label: 'Community',
children: [
{
label: 'Events',
url: 'https://qiskit.org/events/',
},
{
label: 'Advocates',
url: 'https://qiskit.org/advocates/',
},
{
label: 'Ecosystem',
url: 'https://qiskit.org/ecosystem/',
},
],
},
{
label: 'Learn',
url: 'https://qiskit.org/learn/',
},
];

export type { NavItem, TopLevelNavItem };

0 comments on commit 9b2a18b

Please sign in to comment.