devmgllc's picture
add marketing and business managment and mentoring services as well as market research campaigns and pr social media management content production
56efbf0 verified
class CustomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
footer {
background-color: #0F172A;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-container {
max-width: 1280px;
margin: 0 auto;
padding: 4rem 2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 3rem;
}
.footer-logo {
font-weight: 700;
font-size: 1.5rem;
background: linear-gradient(to right, #3B82F6, #10B981);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 1rem;
}
.footer-description {
color: #94A3B8;
margin-bottom: 2rem;
}
.social-links {
display: flex;
gap: 1rem;
}
.social-link {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.05);
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease;
}
.social-link:hover {
background-color: rgba(59, 130, 246, 0.2);
}
.footer-heading {
font-weight: 600;
margin-bottom: 1.5rem;
font-size: 1.125rem;
}
.footer-links {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.footer-link {
color: #94A3B8;
transition: color 0.3s ease;
}
.footer-link:hover {
color: #3B82F6;
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding: 1.5rem 0;
text-align: center;
color: #94A3B8;
font-size: 0.875rem;
}
@media (max-width: 768px) {
.footer-container {
grid-template-columns: 1fr;
}
}
</style>
<footer>
<div class="footer-container">
<div>
<div class="footer-logo">MESISEM GLOBAL</div>
<p class="footer-description">
15 years of trusted global business solutions and cybersecurity excellence.
</p>
<div class="social-links">
<a href="#" class="social-link">
<i data-feather="twitter"></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>
<h3 class="footer-heading">Services</h3>
<div class="footer-links">
<a href="#" class="footer-link">Cybersecurity</a>
<a href="#" class="footer-link">AI Solutions</a>
<a href="#" class="footer-link">Software Development</a>
<a href="#" class="footer-link">Fintech & Blockchain</a>
<a href="#" class="footer-link">Marketing & PR</a>
<a href="#" class="footer-link">Market Research</a>
<a href="#" class="footer-link">Content Production</a>
<a href="#" class="footer-link">Business Mentoring</a>
</div>
</div>
<div>
<h3 class="footer-heading">Company</h3>
<div class="footer-links">
<a href="#about" class="footer-link">About Us</a>
<a href="#" class="footer-link">Careers</a>
<a href="#" class="footer-link">Blog</a>
<a href="#contact" class="footer-link">Contact</a>
</div>
</div>
<div>
<h3 class="footer-heading">Legal</h3>
<div class="footer-links">
<a href="#" class="footer-link">Privacy Policy</a>
<a href="#" class="footer-link">Terms of Service</a>
<a href="#" class="footer-link">Cookie Policy</a>
</div>
</div>
</div>
<div class="footer-bottom">
&copy; ${new Date().getFullYear()} Mesisem Global LLC. All rights reserved.
</div>
</footer>
`;
}
}
customElements.define('custom-footer', CustomFooter);