Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions src/components/NavbarMobileOverlay.res
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ module MobileNav = {
prefetch={#intent}
to=#"/blog"
className={linkOrActiveLinkSubroute(~target=#"/blog", ~route)}
onClick=toggleMobileOverlay
>
{React.string("Blog")}
</Link>
Expand All @@ -31,6 +32,7 @@ module MobileNav = {
prefetch={#intent}
to=#"/community/overview"
className={linkOrActiveLink(~target=#"/community/overview", ~route)}
onClick=toggleMobileOverlay
>
{React.string("Community")}
</Link>
Expand All @@ -40,6 +42,7 @@ module MobileNav = {
prefetch={#intent}
to=#"/packages"
className={linkOrActiveLink(~target=#"/packages", ~route)}
onClick=toggleMobileOverlay
>
{React.string("Packages")}
</Link>
Expand All @@ -50,22 +53,23 @@ module MobileNav = {
rel="noopener noreferrer"
className=extLink
ariaLabel="X (formerly Twitter)"
onClick=closeMobileOverlay
>
{React.string("X")}
</a>
</li>
<li className=base>
<a href=Constants.blueSkyHref rel="noopener noreferrer" className=extLink>
<a href=Constants.blueSkyHref rel="noopener noreferrer" className=extLink onClick=closeMobileOverlay>
{React.string("Bluesky")}
</a>
</li>
<li className=base>
<a href=Constants.githubHref rel="noopener noreferrer" className=extLink>
<a href=Constants.githubHref rel="noopener noreferrer" className=extLink onClick=closeMobileOverlay>
{React.string("GitHub")}
</a>
</li>
<li className=base>
<a href=Constants.discourseHref rel="noopener noreferrer" className=extLink>
<a href=Constants.discourseHref rel="noopener noreferrer" className=extLink onClick=closeMobileOverlay>
{React.string("Forum")}
</a>
</li>
Expand Down
Loading