AppFooter

App

Two-row application footer with logo, navigation links, system status badge, version, copyright, and social slot.

Full — logo + nav + status + social

Preview
Code
<%- include('modules/app/AppFooter', {
  logoContent: '<span class="text-sm font-bold text-primary">Acme</span>',
  version:   '2.4.1',
  status:    'operational',
  copyright: '© 2026 Acme Corp. All rights reserved.',
  navContent: `
    <a href="/docs"      class="px-3 py-1.5 text-sm">Docs</a>
    <a href="/changelog" class="px-3 py-1.5 text-sm">Changelog</a>
    <a href="/support"   class="px-3 py-1.5 text-sm">Support</a>
    <a href="/pricing"   class="px-3 py-1.5 text-sm">Pricing</a>
  `,
  socialContent: `
    <a href="https://github.com/acme"   aria-label="GitHub"><i class="fa-brands fa-github"></i></a>
    <a href="https://x.com/acme"        aria-label="X"><i class="fa-brands fa-x-twitter"></i></a>
    <a href="https://linkedin.com/acme" aria-label="LinkedIn"><i class="fa-brands fa-linkedin"></i></a>
  `
}) %>

Minimal — copyright + status only

Preview
Acme
Degraded

© 2026 Acme Corp.

Code
<%- include('modules/app/AppFooter', {
  logoContent: '<span class="text-sm font-bold text-primary">Acme</span>',
  status:    'degraded',
  copyright: '© 2026 Acme Corp.'
}) %>
Source modules/app/AppFooter.ejs