PHhTTPS's picture
add remaining from Quests 625
b283022 verified
class CustomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
footer {
background: rgba(17, 24, 39, 0.8);
color: white;
padding: 3rem 2rem;
text-align: center;
margin-top: auto;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
text-align: left;
}
.footer-section h3 {
font-size: 1.2rem;
margin-bottom: 1.5rem;
color: #a78bfa;
}
.footer-section ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer-section li {
margin-bottom: 0.5rem;
}
.footer-section a {
color: #e5e7eb;
text-decoration: none;
transition: color 0.2s;
}
.footer-section a:hover {
color: #a78bfa;
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
color: white;
transition: color 0.2s;
}
.social-links a:hover {
color: #a78bfa;
}
.copyright {
margin-top: 3rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 0.9rem;
color: #9ca3af;
}
</style>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>Questastic</h3>
<p>Your portal to epic adventures and legendary quests.</p>
<div class="social-links">
<a href="#"><i data-feather="twitter"></i></a>
<a href="#"><i data-feather="instagram"></i></a>
<a href="#"><i data-feather="github"></i></a>
<a href="#"><i data-feather="discord"></i></a>
</div>
</div>
<div class="footer-section">
<h3>Explore</h3>
<ul>
<li><a href="/quests.html">All Quests</a></li>
<li><a href="/quests.html?difficulty=easy">Beginner Quests</a></li>
<li><a href="/quests.html?difficulty=medium">Intermediate Quests</a></li>
<li><a href="/quests.html?difficulty=hard">Expert Quests</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Resources</h3>
<ul>
<li><a href="/guides.html">Quest Guides</a></li>
<li><a href="/tools.html">GM Tools</a></li>
<li><a href="/blog.html">Adventure Blog</a></li>
<li><a href="/faq.html">FAQ</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Company</h3>
<ul>
<li><a href="/about.html">About Us</a></li>
<li><a href="/contact.html">Contact</a></li>
<li><a href="/privacy.html">Privacy Policy</a></li>
<li><a href="/terms.html">Terms of Service</a></li>
</ul>
</div>
</div>
<div class="copyright">
&copy; ${new Date().getFullYear()} Questastic Adventures. All rights reserved.
</div>
</footer>
`;
}
}
customElements.define('custom-footer', CustomFooter);