/* global React, Logo, useLocale */ // Jullia — site footer. Kit-local: the real logo mark, the by-introduction note, // and columns trimmed to the site's IA. Quiet and sparse, no sitemap sprawl. function SiteFooter({ onNavigate }) { const { t } = useLocale(); const columns = [ { heading: t('footer.domains'), items: [{ label: t('nav.carAudio'), key: 'CarAudio' }, { label: t('nav.homeAudio'), key: 'HomeAudio' }] }, { heading: t('footer.atelier'), items: [{ label: t('nav.home'), key: 'Home' }, { label: t('nav.philosophy'), key: 'Philosophy' }] }, { heading: t('footer.contact'), items: [{ label: t('nav.contacts'), key: 'Contacts' }, { label: t('footer.byIntroduction'), key: null }, { label: t('footer.krakow'), key: null }] }, ]; return ( ); } window.SiteFooter = SiteFooter;