fix(website): mobile regression and layout tweaks

This commit is contained in:
Elian Doran
2025-09-27 21:11:34 +03:00
parent 2df0763141
commit 5905299331
5 changed files with 27 additions and 14 deletions

View File

@@ -46,11 +46,14 @@ export function Header() {
<nav className={`${mobileMenuShown ? "mobile-shown" : ""}`}>
{HEADER_LINKS.map(link => (
<a
<Link
href={link.url}
className={url === link.url ? "active" : ""}
target={link.external && "_blank"}
>{link.text}</a>
openExternally={link.external}
onClick={() => {
setMobileMenuShown(false);
}}
>{link.text}</Link>
))}
<SocialButtons className="mobile-only" withText />