Spaces:
Running
Running
File size: 2,525 Bytes
8f8aecf b49a706 8f8aecf 8ed048a 8f8aecf |
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 |
class CustomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
footer {
background: #f9fafb;
border-top: 1px solid #e5e7eb;
padding: 3rem 1rem;
}
.footer-container {
max-width: 1200px;
margin: 0 auto;
}
.footer-content {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 2rem;
}
.footer-section h4 {
color: #111827;
font-weight: 600;
margin-bottom: 1rem;
}
.footer-links {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.footer-link {
color: #6b7280;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-link:hover {
color: #ff6600;
}
.footer-bottom {
border-top: 1px solid #e5e7eb;
margin-top: 2rem;
padding-top: 2rem;
text-align: center;
color: #6b7280;
}
@media (max-width: 768px) {
.footer-content {
grid-template-columns: 1fr;
gap: 2rem;
}
}
</style>
<footer>
<div class="footer-container">
<div class="footer-content">
<div class="footer-section">
<h4>NanoMatter Technologies</h4>
<p style="color: #6b7280; margin: 0;">Advanced semiconductor equipment for next-generation innovation.</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<div class="footer-links">
<a href="#about" class="footer-link">About</a>
<a href="#service" class="footer-link">Services</a>
<a href="#partnerships" class="footer-link">Partnerships</a>
<a href="#contact" class="footer-link">Contact</a>
</div>
</div>
<div class="footer-section">
<h4>Contact</h4>
<div class="footer-links">
<span style="color: #6b7280;">India: +91 7994785886</span>
<span style="color: #6b7280;">Germany: +49 1628528047</span>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 NanoMatter Technologies. All rights reserved.</p>
</div>
</div>
</footer>
`;
}
}
customElements.define('custom-footer', CustomFooter); |