freeftf/footer.js

19 lines
363 B
JavaScript
Raw Normal View History

2024-08-15 06:06:49 +02:00
class Footer extends HTMLElement {
constructor() {
super();
}
connectedCallback() {
this.innerHTML = `
<center>
<footer>
<div class="footer-content">
<p>2024 FreeFTF | Designed by Squadi the Viking</p>
</div>
</footer>
</center>
`;
}
}
customElements.define('footer-component', Footer);