forked from interstellar_development/freeftf
19 lines
363 B
JavaScript
19 lines
363 B
JavaScript
|
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);
|