Scroll26's picture
This Portfolio is for a Freelancer/Media Designer. While he does make Websites, his main focus is on Animation/3D/Videogames. He also has some experience with A.I. The website should be modern, dark and most importantly unique. It also needs an Impressum and Datenschutz page
a07a2f6 verified
class CustomFooter extends HTMLElement {
constructor() {
super();
}
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
:host {
display: block;
width: 100%;
background-color: #111827;
color: white;
padding: 3rem 1.5rem;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.footer-logo {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 1rem;
color: white;
text-decoration: none;
display: inline-flex;
align-items: center;
}
.footer-logo-icon {
margin-right: 0.5rem;
}
.footer-description {
color: #9ca3af;
line-height: 1.6;
max-width: 300px;
}
.footer-heading {
font-weight: 600;
margin-bottom: 1rem;
font-size: 1.1rem;
}
.footer-links {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.footer-link {
color: #9ca3af;
text-decoration: none;
transition: color 0.2s ease;
}
.footer-link:hover {
color: white;
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-link {
color: #9ca3af;
transition: color 0.2s ease;
}
.social-link:hover {
color: white;
}
.footer-bottom {
border-top: 1px solid #374151;
padding-top: 2rem;
text-align: center;
color: #9ca3af;
}
@media (max-width: 768px) {
.footer-grid {
grid-template-columns: 1fr;
}
}
</style>
<div class="footer-content">
<div class="footer-grid">
<div>
<a href="index.html" class="footer-logo">
<i data-feather="hexagon" class="footer-logo-icon"></i>
NexusMedia
</a>
<p class="footer-description">
Pushing creative boundaries through animation, game design and AI-powered media.
</p>
</div>
<div>
<h3 class="footer-heading">Quick Links</h3>
<div class="footer-links">
<a href="index.html" class="footer-link">Home</a>
<a href="projects.html" class="footer-link">Projects</a>
<a href="#contact" class="footer-link">Contact</a>
</div>
</div>
<div>
<h3 class="footer-heading">Connect</h3>
<div class="footer-links">
<a href="mailto:contact@pixelportfolio.pro" class="footer-link">Email</a>
<a href="#" class="footer-link">Twitter</a>
<a href="#" class="footer-link">LinkedIn</a>
</div>
<div class="social-links">
<a href="#" class="social-link">
<i data-feather="twitter"></i>
</a>
<a href="#" class="social-link">
<i data-feather="instagram"></i>
</a>
<a href="#" class="social-link">
<i data-feather="linkedin"></i>
</a>
<a href="#" class="social-link">
<i data-feather="github"></i>
</a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>&copy; ${new Date().getFullYear()} PixelPortfolio Pro. All rights reserved.</p>
</div>
</div>
`;
// Initialize feather icons
if (window.feather) {
window.feather.replace({ class: 'feather-inline' });
}
}
}
customElements.define('custom-footer', CustomFooter);