@seqera/docusaurus-theme-seqera 1.0.19 → 1.0.20-next.67

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,7 +16,6 @@ import NavbarMobileSidebarToggle from '@theme/Navbar/MobileSidebar/Toggle';
16
16
  import NavbarLogo from '@theme/Navbar/Logo';
17
17
  import Submenu from '../Submenu';
18
18
  import styles from './styles.module.css';
19
- import Link from '@docusaurus/Link';
20
19
  function useNavbarItems() {
21
20
  // TODO temporary casting until ThemeConfig type is improved
22
21
  return useThemeConfig().navbar.items;
@@ -110,18 +109,18 @@ export default function NavbarContent() {
110
109
  <NavbarItems items={leftItems} />
111
110
  </div>
112
111
  <div className="mr-2">
113
- <Link
112
+ <a
114
113
  className="navbar__link ml-8 font-normal"
115
- href={'/platform-api/'}
114
+ href="/platform-api/"
116
115
  aria-label="Platform API">
117
116
  Platform API
118
- </Link>
119
- <Link
117
+ </a>
118
+ <a
120
119
  className="navbar__link ml-8 font-normal"
121
- href={'/changelog/'}
120
+ href="/changelog/"
122
121
  aria-label="Changelog">
123
122
  Changelog
124
- </Link>
123
+ </a>
125
124
  </div>
126
125
  </div>
127
126
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seqera/docusaurus-theme-seqera",
3
- "version": "1.0.19",
3
+ "version": "1.0.20-next.67",
4
4
  "description": "Seqera docs theme for Docusaurus",
5
5
  "author": "Seqera docs team <education@seqera.io>",
6
6
  "license": "Apache-2.0",
@@ -17,7 +17,6 @@ import NavbarLogo from '@theme/Navbar/Logo';
17
17
  import NavbarSearch from '@theme/Navbar/Search';
18
18
  import Submenu from '../Submenu';
19
19
  import styles from './styles.module.css';
20
- import Link from '@docusaurus/Link';
21
20
 
22
21
  function useNavbarItems() {
23
22
  // TODO temporary casting until ThemeConfig type is improved
@@ -126,18 +125,18 @@ export default function NavbarContent(): ReactNode {
126
125
  <NavbarItems items={leftItems} />
127
126
  </div>
128
127
  <div className="mr-2">
129
- <Link
128
+ <a
130
129
  className="navbar__link ml-8 font-normal"
131
- href={'/platform-api/'}
130
+ href="/platform-api/"
132
131
  aria-label="Platform API">
133
132
  Platform API
134
- </Link>
135
- <Link
133
+ </a>
134
+ <a
136
135
  className="navbar__link ml-8 font-normal"
137
- href={'/changelog/'}
136
+ href="/changelog/"
138
137
  aria-label="Changelog">
139
138
  Changelog
140
- </Link>
139
+ </a>
141
140
  </div>
142
141
  </div>
143
142
  </div>