Spaces:
Running
Running
| class CustomFooter extends HTMLElement { | |
| connectedCallback() { | |
| this.attachShadow({ mode: 'open' }); | |
| this.shadowRoot.innerHTML = ` | |
| <style> | |
| footer { | |
| background: rgba(15, 10, 31, 0.8); | |
| color: rgba(255, 255, 255, 0.6); | |
| padding: 2rem; | |
| text-align: center; | |
| font-family: 'JetBrains Mono', monospace; | |
| font-size: 0.8rem; | |
| border-top: 1px solid rgba(110, 64, 201, 0.2); | |
| } | |
| .footer-content { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); | |
| gap: 2rem; | |
| text-align: left; | |
| } | |
| .footer-section h3 { | |
| color: white; | |
| margin-bottom: 1rem; | |
| font-size: 1rem; | |
| } | |
| .footer-links { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 0.5rem; | |
| } | |
| .footer-links a { | |
| color: rgba(255, 255, 255, 0.6); | |
| text-decoration: none; | |
| transition: color 0.2s; | |
| } | |
| .footer-links a:hover { | |
| color: white; | |
| } | |
| .copyright { | |
| margin-top: 2rem; | |
| padding-top: 1rem; | |
| border-top: 1px solid rgba(110, 64, 201, 0.1); | |
| } | |
| </style> | |
| <footer> | |
| <div class="footer-content"> | |
| <div class="footer-section"> | |
| <h3>ShadowStealer</h3> | |
| <p>Advanced penetration testing toolkit for ethical security professionals.</p> | |
| </div> | |
| <div class="footer-section"> | |
| <h3>Modules</h3> | |
| <div class="footer-links"> | |
| <a href="#">Network Scanner</a> | |
| <a href="#">Credential Harvester</a> | |
| <a href="#">Firewall Bypass</a> | |
| <a href="#">Data Exfiltration</a> | |
| </div> | |
| </div> | |
| <div class="footer-section"> | |
| <h3>Resources</h3> | |
| <div class="footer-links"> | |
| <a href="#">Documentation</a> | |
| <a href="#">API Reference</a> | |
| <a href="#">GitHub</a> | |
| <a href="#">Blog</a> | |
| </div> | |
| </div> | |
| <div class="footer-section"> | |
| <h3>Legal</h3> | |
| <div class="footer-links"> | |
| <a href="#">License</a> | |
| <a href="#">Terms of Service</a> | |
| <a href="#">Privacy Policy</a> | |
| <a href="#">Responsible Disclosure</a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="copyright"> | |
| © 2023 ShadowStealer. For educational purposes only. | |
| </div> | |
| </footer> | |
| `; | |
| } | |
| } | |
| customElements.define('custom-footer', CustomFooter); |