Spaces:
Running
Running
| class FooterComponent extends HTMLElement { | |
| connectedCallback() { | |
| this.attachShadow({ mode: 'open' }); | |
| this.shadowRoot.innerHTML = ` | |
| <style> | |
| .footer-link:hover { | |
| color: var(--primary-500); | |
| } | |
| </style> | |
| <footer class="bg-gray-800/50 border-t border-gray-800 mt-16"> | |
| <div class="container mx-auto px-6 py-12"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-4">Tooltopia Hub</h3> | |
| <p class="text-gray-400">Your one-stop destination for all online tools. Free, fast, and easy to use.</p> | |
| </div> | |
| <div> | |
| <h4 class="text-md font-semibold mb-4">Categories</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="footer-link text-gray-400 hover:text-primary-500">Developer Tools</a></li> | |
| <li><a href="#" class="footer-link text-gray-400 hover:text-primary-500">Media Tools</a></li> | |
| <li><a href="#" class="footer-link text-gray-400 hover:text-primary-500">Document Tools</a></li> | |
| <li><a href="#" class="footer-link text-gray-400 hover:text-primary-500">Web Tools</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-md font-semibold mb-4">Company</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="footer-link text-gray-400 hover:text-primary-500">About Us</a></li> | |
| <li><a href="#" class="footer-link text-gray-400 hover:text-primary-500">Contact</a></li> | |
| <li><a href="#" class="footer-link text-gray-400 hover:text-primary-500">Privacy Policy</a></li> | |
| <li><a href="#" class="footer-link text-gray-400 hover:text-primary-500">Terms of Service</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-md font-semibold mb-4">Connect</h4> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-primary-500"><i data-feather="twitter"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-primary-500"><i data-feather="github"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-primary-500"><i data-feather="linkedin"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-primary-500"><i data-feather="facebook"></i></a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-500 text-sm"> | |
| © ${new Date().getFullYear()} Tooltopia Hub. All rights reserved. | |
| </div> | |
| </div> | |
| </footer> | |
| `; | |
| } | |
| } | |
| customElements.define('footer-component', FooterComponent); |