Spaces:
Running
Running
| class CustomFooter extends HTMLElement { | |
| connectedCallback() { | |
| this.attachShadow({ mode: 'open' }); | |
| this.shadowRoot.innerHTML = ` | |
| <style> | |
| footer { | |
| background: rgba(15, 23, 42, 0.8); | |
| backdrop-filter: blur(10px); | |
| color: rgba(255, 255, 255, 0.7); | |
| padding: 3rem 2rem; | |
| margin-top: 4rem; | |
| border-top: 1px solid rgba(255, 255, 255, 0.1); | |
| } | |
| .footer-content { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); | |
| gap: 2rem; | |
| } | |
| .footer-logo { | |
| font-size: 1.5rem; | |
| font-weight: bold; | |
| background: linear-gradient(135deg, #ef4444 0%, #ec4899 100%); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| margin-bottom: 1rem; | |
| } | |
| .footer-links h3 { | |
| color: white; | |
| font-size: 1.1rem; | |
| margin-bottom: 1rem; | |
| } | |
| .footer-links ul { | |
| list-style: none; | |
| padding: 0; | |
| margin: 0; | |
| } | |
| .footer-links li { | |
| margin-bottom: 0.5rem; | |
| } | |
| .footer-links a { | |
| color: rgba(255, 255, 255, 0.7); | |
| text-decoration: none; | |
| transition: color 0.3s; | |
| } | |
| .footer-links a:hover { | |
| color: white; | |
| } | |
| .social-links { | |
| display: flex; | |
| gap: 1rem; | |
| margin-top: 1rem; | |
| } | |
| .social-links a { | |
| color: rgba(255, 255, 255, 0.7); | |
| transition: color 0.3s; | |
| } | |
| .social-links a:hover { | |
| color: white; | |
| } | |
| .copyright { | |
| text-align: center; | |
| margin-top: 3rem; | |
| padding-top: 1.5rem; | |
| border-top: 1px solid rgba(255, 255, 255, 0.1); | |
| font-size: 0.9rem; | |
| } | |
| </style> | |
| <footer> | |
| <div class="footer-content"> | |
| <div class="footer-about"> | |
| <div class="footer-logo">PixFlow</div> | |
| <p>Create private adult animations from your images with our NSFW AI technology.</p> | |
| <div class="social-links"> | |
| <a href="#"><i data-feather="twitter"></i></a> | |
| <a href="#"><i data-feather="instagram"></i></a> | |
| <a href="#"><i data-feather="facebook"></i></a> | |
| <a href="#"><i data-feather="github"></i></a> | |
| </div> | |
| </div> | |
| <div class="footer-links"> | |
| <h3>Product</h3> | |
| <ul> | |
| <li><a href="#">Adult Styles</a></li> | |
| <li><a href="#">VIP Membership</a></li> | |
| <li><a href="#">OnlyFans Tools</a></li> | |
| <li><a href="#">Discreet Billing</a></li> | |
| </ul> | |
| </div> | |
| <div class="footer-links"> | |
| <h3>Company</h3> | |
| <ul> | |
| <li><a href="#">About</a></li> | |
| <li><a href="#">Blog</a></li> | |
| <li><a href="#">Careers</a></li> | |
| <li><a href="#">Contact</a></li> | |
| </ul> | |
| </div> | |
| <div class="footer-links"> | |
| <h3>Resources</h3> | |
| <ul> | |
| <li><a href="#">Help Center</a></li> | |
| <li><a href="#">Tutorials</a></li> | |
| <li><a href="#">API</a></li> | |
| <li><a href="#">Community</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="copyright"> | |
| © ${new Date().getFullYear()} PixFlow. All rights reserved. | |
| </div> | |
| </footer> | |
| `; | |
| } | |
| } | |
| customElements.define('custom-footer', CustomFooter); |