Spaces:
Running
Running
File size: 2,158 Bytes
82aef84 | 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 | class CustomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
footer {
background-color: #1e293b;
color: white;
padding: 3rem 1rem;
text-align: center;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
}
.social-links {
display: flex;
justify-content: center;
gap: 1rem;
margin: 1.5rem 0;
}
.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: #334155;
color: white;
transition: all 0.3s ease;
}
.social-links a:hover {
background-color: #7c3aed;
transform: translateY(-3px);
}
.copyright {
margin-top: 2rem;
color: #94a3b8;
font-size: 0.875rem;
}
</style>
<footer>
<div class="footer-content">
<h3 class="text-xl font-bold">Umesh Shelare</h3>
<p class="text-gray-300 mt-2">Android Developer | Kotlin Enthusiast | Problem Solver</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/umeshs09/" aria-label="LinkedIn">
<i data-feather="linkedin"></i>
</a>
<a href="https://github.com/umeshshelare" aria-label="GitHub">
<i data-feather="github"></i>
</a>
<a href="https://twitter.com/umeshshelare" aria-label="Twitter">
<i data-feather="twitter"></i>
</a>
<a href="mailto:umeshshelare09@gmail.com" aria-label="Email">
<i data-feather="mail"></i>
</a>
</div>
<div class="copyright">
© ${new Date().getFullYear()} Umesh Shelare. All rights reserved.
</div>
</div>
</footer>
`;
}
}
customElements.define('custom-footer', CustomFooter); |