// Footer — platform-wide chrome footer.
// Renders © The Amos Project on the left and a "Powered by" link on the
// right. Included at the bottom of every main page (Library, Collection,
// Amos landing, About, Saved, Recent, and the three readers).
// Drawers and modals do NOT include the footer — they're overlays.

function Footer() {
  return React.createElement('footer', { className:'amos-footer' },
    React.createElement('div', { className:'amos-footer-inner' },
      React.createElement('div', { className:'amos-footer-left' },
        '\u00a9 2026 The Amos Project. All rights reserved.'
      ),
      React.createElement('div', { className:'amos-footer-right' },
        'Powered by ',
        React.createElement('a', {
          href: 'https://worldmission.media',
          target: '_blank',
          rel: 'noopener noreferrer'
        }, 'The Amos Project')
      )
    )
  );
}
Object.assign(window, { Footer });
