feat: add Swedish flag + social icons to mobile menu footer

This commit is contained in:
Jeffrey 2026-02-24 11:13:44 +01:00
parent 72c75bdd3f
commit 7010e6519b

View File

@ -441,16 +441,17 @@ export const HeaderNav: React.FC<{ data: HeaderType; socialLinks?: SocialLinkDat
})}
</nav>
{/* ── Social icons row at bottom of mobile menu ── */}
{socialLinks.length > 0 && (
<div className="px-6 py-5 border-t border-white/10">
{/* ── Mobile menu footer: flag left, social icons right ── */}
<div className="px-6 py-5 border-t border-white/10 flex items-center justify-between">
<SwedishFlag />
{socialLinks.length > 0 && (
<SocialIconsRow
links={socialLinks}
linkClassName="text-white/50 hover:text-white"
iconSize="w-6 h-6"
/>
</div>
)}
)}
</div>
</div>
</>
)