tm409281's picture
make it to where the app remembers the uploaded file name and any download has a modifier of that added at end. Also add noise & masking reduction for vocal processing to the speech enhancement.
ff37766 verified
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">
&copy; ${new Date().getFullYear()} VoiceCraft AI Assistant. All rights reserved.
</div>
</footer>
`;
}
}
customElements.define('custom-footer', CustomFooter);