kramp's picture
kramp HF Staff
make it in both French and English
5fba8c9 verified
class CustomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
footer {
background: rgba(0, 0, 0, 0.9);
color: white;
padding: 2rem;
text-align: center;
border-top: 2px solid #dc2626;
}
.social-links {
display: flex;
justify-content: center;
gap: 1.5rem;
margin-bottom: 1.5rem;
}
.social-links a {
color: white;
transition: color 0.3s;
}
.social-links a:hover {
color: #dc2626;
}
.copyright {
font-size: 0.9rem;
opacity: 0.8;
}
</style>
<footer>
<div class="social-links">
<a href="#"><i data-feather="facebook"></i></a>
<a href="#"><i data-feather="instagram"></i></a>
<a href="#"><i data-feather="youtube"></i></a>
<a href="#"><i data-feather="music"></i></a>
</div>
<p class="copyright">&copy; ${new Date().getFullYear()} M.e.B. <span data-translate="rights">All rights reserved. Made with anger and electricity.</span></p>
</footer>
`;
}
}
customElements.define('custom-footer', CustomFooter);