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> </nav>
{/* ── Social icons row at bottom of mobile menu ── */} {/* ── Mobile menu footer: flag left, social icons right ── */}
{socialLinks.length > 0 && ( <div className="px-6 py-5 border-t border-white/10 flex items-center justify-between">
<div className="px-6 py-5 border-t border-white/10"> <SwedishFlag />
{socialLinks.length > 0 && (
<SocialIconsRow <SocialIconsRow
links={socialLinks} links={socialLinks}
linkClassName="text-white/50 hover:text-white" linkClassName="text-white/50 hover:text-white"
iconSize="w-6 h-6" iconSize="w-6 h-6"
/> />
</div> )}
)} </div>
</div> </div>
</> </>
) )