File size: 4,489 Bytes
4ccea17 | 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 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | class CustomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
footer {
background: #1f2937;
color: white;
padding: 4rem 2rem 2rem;
}
.footer-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
}
.footer-logo {
font-weight: 800;
font-size: 1.5rem;
background: linear-gradient(to right, #6366f1, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
margin-bottom: 1rem;
display: inline-block;
}
.footer-about p {
color: #d1d5db;
margin-bottom: 1.5rem;
line-height: 1.6;
}
.social-links {
display: flex;
gap: 1rem;
}
.social-links a {
width: 36px;
height: 36px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
}
.social-links a:hover {
background: #6366f1;
}
.footer-links h3 {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 1.25rem;
color: white;
}
.footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links li {
margin-bottom: 0.75rem;
}
.footer-links a {
color: #d1d5db;
text-decoration: none;
transition: color 0.2s;
}
.footer-links a:hover {
color: #6366f1;
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 2rem;
margin-top: 3rem;
text-align: center;
color: #9ca3af;
font-size: 0.875rem;
}
@media (max-width: 768px) {
.footer-container {
grid-template-columns: 1fr;
}
}
</style>
<footer>
<div class="footer-container">
<div class="footer-about">
<a href="/" class="footer-logo">EduSphere</a>
<p>Modern education platform designed to help you achieve your learning goals with interactive courses and expert guidance.</p>
<div class="social-links">
<a href="#"><i data-feather="twitter"></i></a>
<a href="#"><i data-feather="facebook"></i></a>
<a href="#"><i data-feather="linkedin"></i></a>
<a href="#"><i data-feather="instagram"></i></a>
<a href="#"><i data-feather="youtube"></i></a>
</div>
</div>
<div class="footer-links">
<h3>Company</h3>
<ul>
<li><a href="/about.html">About Us</a></li>
<li><a href="/careers.html">Careers</a></li>
<li><a href="/blog.html">Blog</a></li>
<li><a href="/press.html">Press</a></li>
</ul>
</div>
<div class="footer-links">
<h3>Resources</h3>
<ul>
<li><a href="/help.html">Help Center</a></li>
<li><a href="/tutorials.html">Tutorials</a></li>
<li><a href="/webinars.html">Webinars</a></li>
<li><a href="/guides.html">Guides</a></li>
</ul>
</div>
<div class="footer-links">
<h3>Legal</h3>
<ul>
<li><a href="/privacy.html">Privacy Policy</a></li>
<li><a href="/terms.html">Terms of Service</a></li>
<li><a href="/cookies.html">Cookie Policy</a></li>
<li><a href="/gdpr.html">GDPR</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© ${new Date().getFullYear()} EduSphere. All rights reserved.</p>
</div>
</footer>
`;
// Replace feather icons after shadow DOM is rendered
setTimeout(() => {
if (this.shadowRoot.querySelector('[data-feather]')) {
feather.replace();
}
}, 100);
}
}
customElements.define('custom-footer', CustomFooter); |