--- import HomeIcon from "./icons/HomeIcon.astro"; const pathname = Astro.url.pathname; const currentLang = pathname.startsWith('/en') ? 'en' : pathname.startsWith('/ar') ? 'ar' : 'fr'; const isHome = pathname === '/' || pathname === '/en' || pathname === '/en/' || pathname === '/ar' || pathname === '/ar/'; const homeUrl = currentLang === 'en' ? '/en' : currentLang === 'ar' ? '/ar' : '/'; --- {!isHome && ( )}