{#
# Custom install prompt. Chrome fires 'beforeinstallprompt' when the site
# meets its installability criteria; js/pwa.js captures it, prevents the
# default mini-infobar, and drives this banner + the drawer link in
# nav.html.twig instead — so install timing/UI is ours, not the browser's.
# Hidden by default; unhidden by JS only once the browser actually offers
# the prompt. No-op on browsers that never fire the event (iOS Safari).
#}
<div id="fk-install-banner" class="fk-install-banner" hidden>
<div class="fk-install-banner-icon">F</div>
<div class="fk-install-banner-body">
<p class="fk-install-banner-title">{{ 'Zainstaluj Fibkit'|trans }}</p>
<p class="fk-install-banner-text">{{ 'Szybszy dostęp z ekranu głównego, bez otwierania przeglądarki.'|trans }}</p>
<div class="fk-install-banner-actions">
<button type="button" id="fk-install-accept" class="btn btn-sm fk-install-btn-accept">{{ 'Zainstaluj'|trans }}</button>
<button type="button" id="fk-install-dismiss" class="btn btn-sm btn-outline-secondary">{{ 'Nie teraz'|trans }}</button>
</div>
</div>
</div>