We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e7aaea commit 2fa0013Copy full SHA for 2fa0013
1 file changed
components/navigation/DesktopNavigationLinks.tsx
@@ -8,7 +8,7 @@ interface DesktopNavigationLinksProps {
8
9
export function DesktopNavigationLinks({ pathname }: DesktopNavigationLinksProps) {
10
return (
11
- <>
+ <div className="flex items-center gap-1">
12
<nav className="hidden md:flex items-center gap-1">
13
{PUBLIC_NAV_LINKS.map((link) => (
14
<Link
@@ -27,6 +27,6 @@ export function DesktopNavigationLinks({ pathname }: DesktopNavigationLinksProps
27
>
28
{ABOUT_NAV_LINK.label}
29
</Link>
30
- </>
+ </div>
31
);
32
}
0 commit comments