Spaces:
Running
Running
File size: 3,246 Bytes
ff37766 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
class CustomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
footer {
background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 10, 70, 0.95) 100%);
color: white;
padding: 2rem;
text-align: center;
margin-top: auto;
backdrop-filter: blur(10px);
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;
text-align: left;
}
.footer-section h3 {
font-size: 1.1rem;
margin-bottom: 1rem;
color: #d6bcfa;
}
.footer-section ul {
list-style: none;
padding: 0;
}
.footer-section li {
margin-bottom: 0.5rem;
}
.footer-section a {
color: #cbd5e0;
text-decoration: none;
transition: color 0.2s;
}
.footer-section a:hover {
color: #9f7aea;
}
.social-links {
display: flex;
gap: 1rem;
justify-content: center;
margin-top: 1.5rem;
}
.social-links a {
color: white;
transition: color 0.2s;
}
.social-links a:hover {
color: #9f7aea;
}
.copyright {
margin-top: 2rem;
font-size: 0.9rem;
color: #a0aec0;
}
@media (max-width: 768px) {
.footer-content {
grid-template-columns: 1fr;
text-align: center;
}
.social-links {
justify-content: center;
}
}
</style>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>VoiceCraft AI</h3>
<p>Advanced speech processing powered by SpeechBrain and SciPy.</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Documentation</a></li>
<li><a href="#">API Reference</a></li>
<li><a href="#">Examples</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Resources</h3>
<ul>
<li><a href="#">GitHub</a></li>
<li><a href="#">SpeechBrain</a></li>
<li><a href="#">SciPy</a></li>
<li><a href="#">Blog</a></li>
</ul>
</div>
</div>
<div class="social-links">
<a href="#"><i data-feather="github"></i></a>
<a href="#"><i data-feather="twitter"></i></a>
<a href="#"><i data-feather="linkedin"></i></a>
<a href="#"><i data-feather="youtube"></i></a>
</div>
<div class="copyright">
© ${new Date().getFullYear()} VoiceCraft AI Assistant. All rights reserved.
</div>
</footer>
`;
}
}
customElements.define('custom-footer', CustomFooter); |