Arnedk's picture
you were supposed to clone https://kvdkvisualstudio.wixsite.com/kvdk-visual-studio take another look
a06d83d verified
class CustomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
footer {
background-color: black;
color: white;
padding: 3rem 0;
}
.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.footer-logo {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
}
.footer-links h3 {
margin-bottom: 1.5rem;
font-size: 1.2rem;
}
.footer-links ul {
list-style: none;
padding: 0;
}
.footer-links li {
margin-bottom: 0.8rem;
}
.footer-links a {
color: white;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #ff0000;
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
color: white;
font-size: 1.2rem;
transition: color 0.3s ease;
}
.social-links a:hover {
color: #ff0000;
}
.copyright {
text-align: center;
margin-top: 3rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
</style>
<footer>
<div class="footer-container">
<div class="footer-about">
<div class="footer-logo">KVDK VISUAL STUDIO</div>
<p>Creative visual solutions for your brand.</p>
<div class="social-links">
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
<div class="footer-links">
<h3>Quick Links</h3>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/portfolio">Portfolio</a></li>
<li><a href="/services">Services</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</div>
<div class="footer-links">
<h3>Contact</h3>
<ul>
<li><i class="fas fa-envelope"></i> info@kvdk.com</li>
<li><i class="fas fa-phone"></i> +1 (555) 123-4567</li>
<li><i class="fas fa-map-marker-alt"></i> 123 Studio St, City</li>
</ul>
</div>
</div>
<div class="copyright">
&copy; ${new Date().getFullYear()} KVDK Visual Studio. All rights reserved.
</div>
</footer>
`;
}
}
customElements.define('custom-footer', CustomFooter);