| class CustomFooter extends HTMLElement { | |
| connectedCallback() { | |
| this.attachShadow({ mode: 'open' }); | |
| this.shadowRoot.innerHTML = ` | |
| <style> | |
| .footer-link:hover { | |
| color: #f59e0b; | |
| transform: translateX(4px); | |
| } | |
| .footer-link { | |
| transition: all 0.2s ease; | |
| } | |
| </style> | |
| <footer class="bg-gray-800 text-white py-12"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <h3 class="text-xl font-bold mb-4 text-amber-400">LinkHive</h3> | |
| <p class="text-gray-400">The ultimate biolink maker for creators, businesses, and influencers.</p> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-4">Product</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="/features" class="footer-link text-gray-400">Features</a></li> | |
| <li><a href="/pricing" class="footer-link text-gray-400">Pricing</a></li> | |
| <li><a href="/templates" class="footer-link text-gray-400">Templates</a></li> | |
| <li><a href="/updates" class="footer-link text-gray-400">Updates</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-4">Company</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="/about" class="footer-link text-gray-400">About</a></li> | |
| <li><a href="/careers" class="footer-link text-gray-400">Careers</a></li> | |
| <li><a href="/blog" class="footer-link text-gray-400">Blog</a></li> | |
| <li><a href="/press" class="footer-link text-gray-400">Press</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-4">Connect</h4> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-amber-400"> | |
| <i data-feather="twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-amber-400"> | |
| <i data-feather="instagram"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-amber-400"> | |
| <i data-feather="facebook"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-amber-400"> | |
| <i data-feather="linkedin"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400"> | |
| <p>© ${new Date().getFullYear()} LinkHive. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| `; | |
| } | |
| } | |
| customElements.define('custom-footer', CustomFooter); |