We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 989e0de commit a3af3e9Copy full SHA for a3af3e9
src/components/landing/Navbar.tsx
@@ -1,4 +1,3 @@
1
-import Link from '@docusaurus/Link';
2
import { MenuIcon, XIcon } from 'lucide-react';
3
import React, { Fragment, ReactNode } from 'react';
4
import { ButtonLink } from './SharedComponents';
@@ -236,7 +235,7 @@ function NavLink({
236
235
target?: '_blank' | '_self';
237
}) {
238
return (
239
- <Link
+ <a
240
href={href}
241
className={classNames(
242
isCurrent
@@ -248,7 +247,7 @@ function NavLink({
248
247
target={target}
249
>
250
{children}
251
- </Link>
+ </a>
252
);
253
}
254
0 commit comments