// Footer.jsx
const Footer = () => (
  <footer className="cc-footer">
    <div className="cc-footer-inner">
      <div className="cc-footer-brand">
        <img src="assets/logo-mark.svg" alt="" />
        <div>
          <div className="cc-footer-company">Constructive Creativity LLC</div>
          <div className="cc-footer-tagline">App Development Studio</div>
        </div>
      </div>
      <div className="cc-footer-links">
        <a href="https://apps.apple.com/app/id6759466531" target="_blank" rel="noopener">App Store</a>
        <a href="#">Privacy</a>
        <a href="#">Terms</a>
        <a href="mailto:constructivecreativityllc@gmail.com">Contact</a>
      </div>
      <div className="cc-footer-copy">© 2026 CONSTRUCTIVE CREATIVITY LLC · ALL RIGHTS RESERVED</div>
    </div>
  </footer>
);
window.Footer = Footer;
