/* global React */
function Footer() {
  return (
    <footer className="fw-footer">
      <div className="fw-container fw-footer__inner">
        <div className="fw-footer__brand">
          <a href="#top"><img src="assets/logo-frissewand-white.svg" alt="FrisseWand" /></a>
          <p className="fw-meta">Wissel je kunst. Houd je ruimte fris.</p>
        </div>
        <ul className="fw-footer__contact">
          <li><a href="tel:+31627225565">+31 6 27 22 55 65</a></li>
          <li><a href="mailto:info@frissewand.nl">info@frissewand.nl</a></li>
          <li>Amsterdam, Netherlands</li>
        </ul>
        <ul className="fw-footer__legal">
          <li><a href="#">Algemene Voorwaarden</a></li>
          <li><a href="#">Privacy</a></li>
          <li className="fw-meta">KvK 85198498 · BTW NL004065330B18</li>
        </ul>
      </div>
      <div className="fw-footer__copyright">
        <div className="fw-container">
          <span className="fw-meta">© 2026 FrisseWand. All Rights Reserved.</span>
        </div>
      </div>
    </footer>
  );
}

window.Footer = Footer;
