abelone's picture
redesign alt fra scrastch
fda9f81 verified
class CustomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
footer {
background: var(--dark);
color: white;
padding: 4rem 0;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
padding: 0 2rem;
}
.footer-section h3 {
color: white;
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1.5rem;
}
.footer-section a {
color: #e5e7eb;
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.75rem;
transition: all 0.3s ease;
}
.footer-section a:hover {
color: var(--primary);
}
.footer-bottom {
margin-top: 4rem;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
text-align: center;
color: #9ca3af;
}
</style>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>NorseMind AI</h3>
<p>Lokale AI-løsninger for norske virksomheter med 100% datasuverenitet.</p>
</div>
<div class="footer-section">
<h3>Tjenester</h3>
<a href="/tjenester.html"><i data-feather="zap"></i> AI Løsninger</a>
<a href="/tjenester.html"><i data-feather="shield"></i> Datasikkerhet</a>
<a href="/tjenester.html"><i data-feather="cpu"></i> Systemer</a>
</div>
<div class="footer-section">
<h3>Kontakt</h3>
<a href="mailto:hei@norsemind.no"><i data-feather="mail"></i> hei@norsemind.no</a>
<a href="tel:+4712345678"><i data-feather="phone"></i> +47 12 34 56 78</a>
<a href="#"><i data-feather="map-pin"></i> Oslo, Norge</a>
</div>
<div class="footer-section">
<h3>Følg oss</h3>
<a href="#"><i data-feather="linkedin"></i> LinkedIn</a>
<a href="#"><i data-feather="twitter"></i> Twitter</a>
</div>
</div>
<div class="footer-bottom">
<p>&copy; ${new Date().getFullYear()} NorseMind AI. Alle rettigheter reservert.</p>
</div>
</footer>
`;
}
}
customElements.define('custom-footer', CustomFooter);