Files
dobetternorge-tools/includes/footer.php
T
daveadmin 7df3b7f8d3 Replace manifesto bar with compact context bar + add privacy page
- layout.php: replace large manifesto section (eyebrow/title/sub/4 stats) with
  a slim dbn-context-bar strip linking to why-ours, pricing, MCP, and privacy
- i18n.php: add context_bar_* + footer_privacy_link + privacy_page_title keys
  to all 4 language blocks (en, no, uk, pl)
- dbn-tools-redesign.css: add .dbn-context-bar styles with mobile wrap
- privacy.php: new standalone page in 4 languages covering in-memory processing,
  metadata-only logging, My Case opt-in storage, EU data locations, and HTTPS transport
- footer.php: add Privacy link to first footer column

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-24 14:44:44 +02:00

46 lines
2.1 KiB
PHP

<?php
declare(strict_types=1);
$_footerLang = dbnToolsCurrentLanguage();
function _ft(string $key, string $lang): string {
return htmlspecialchars(dbnToolsT($key, $lang));
}
?>
<footer class="lt-footer">
<div class="lt-footer__inner">
<div class="lt-footer__brand">
<picture>
<source srcset="assets/images/logo-header.webp" type="image/webp">
<img class="lt-footer__logo" src="assets/images/logo-header.png" alt="Do Better Norge" width="140" height="34" loading="lazy">
</picture>
<p class="lt-footer__tagline">
<?= _ft('footer_tagline', $_footerLang) ?>
<?= $_footerLang === 'no' ? 'Drevet av' : 'Powered by' ?> <a href="https://bluenotelogic.com/caveauai" target="_blank" rel="noopener noreferrer">CaveauAI</a>.
</p>
<p class="lt-footer__privacy-note">
<?= _ft('footer_privacy_note', $_footerLang) ?>
</p>
</div>
<nav class="lt-footer__links" aria-label="Footer links">
<div class="lt-footer__link-col">
<a href="https://dobetternorge.no" target="_blank" rel="noopener noreferrer">Do Better Norge</a>
<a href="https://dobetternorge.no/library.php"><?= _ft('footer_legal_lib', $_footerLang) ?></a>
<a href="/pricing.php"><?= _ft('pricing_nav_link', $_footerLang) ?></a>
<a href="/why-ours.php"><?= _ft('why_ours_trust_link', $_footerLang) ?></a>
<a href="/privacy.php"><?= _ft('footer_privacy_link', $_footerLang) ?></a>
<a href="mailto:support@dobetternorge.no"><?= _ft('footer_report', $_footerLang) ?></a>
</div>
<div class="lt-footer__link-col">
<a href="https://bluenotelogic.com/caveauai" target="_blank" rel="noopener noreferrer"><?= _ft('footer_about_caveau', $_footerLang) ?></a>
<a href="https://bluenotelogic.com" target="_blank" rel="noopener noreferrer">Blue Note Logic</a>
</div>
</nav>
</div>
<div class="lt-footer__bottom">
<p class="lt-footer__copy">&copy; 2026 Blue Note Logic Inc. All rights reserved.</p>
<p class="lt-footer__disclaimer"><?= _ft('footer_disclaimer', $_footerLang) ?></p>
</div>
</footer>