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

Commit

Permalink
feat(ui-shell): add "Providers" link (#222)
Browse files Browse the repository at this point in the history
* feat(ui-shell): add "Providers" link

* chore: add changeset

* feat(ui-shell): expand mega menu items columns
  • Loading branch information
eddybrando authored Apr 19, 2023
1 parent b31b455 commit 999e196
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 22 deletions.
5 changes: 5 additions & 0 deletions .changeset/three-parents-boil.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@qiskit/web-components': minor
---

feat(ui-shell): add "Providers" link
2 changes: 1 addition & 1 deletion components/ui-shell/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ $prefix: "bx";
bottom: auto;
left: 0;
display: grid;
grid-template-columns: repeat(7, 1fr);
grid-template-columns: repeat(6, 1fr);
width: 100vw;
height: auto;
padding: var(--cds-spacing-05) var(--cds-spacing-03);
Expand Down
25 changes: 4 additions & 21 deletions components/ui-shell/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,27 +102,6 @@ export const NAV_ITEMS: TopLevelNavItem[] = [
},
],
},
{
label: 'Providers',
children: [
{
label: 'Qiskit Aer',
url: 'https://qiskit.org/documentation/aer',
},
{
label: 'Qiskit IBM Runtime',
url: 'https://qiskit.org/documentation/partners/qiskit_ibm_runtime/',
},
{
label: 'Qiskit IBM Provider',
url: 'https://qiskit.org/documentation/partners/qiskit_ibm_provider/',
},
{
label: 'Partners',
url: 'https://qiskit.org/documentation/partners/',
},
],
},
{
label: 'Applications',
children: [
Expand Down Expand Up @@ -197,6 +176,10 @@ export const NAV_ITEMS: TopLevelNavItem[] = [
},
],
},
{
label: 'Providers',
url: 'https://qiskit.org/providers/',
},
];

export type { NavItem, TopLevelNavItem };

0 comments on commit 999e196

Please sign in to comment.