Files
ask-mutual-fund/components/footer.html
unknown 289eaf8ed4
All checks were successful
ask-mutual-fund Actions Workflow / test (push) Successful in 16s
made overall layout as figma
2025-11-05 19:34:57 +05:30

96 lines
3.4 KiB
HTML

<footer class="footer-section text-white py-5">
<div class="container">
<div class="row gy-4">
<!-- Left Section -->
<div class="col-lg-4 col-md-6">
<div class="footer-logo mb-3 d-flex align-items-center">
<a href="#"
><img
src="./assests/images/footer-logo.svg"
alt="ASK Logo"
height="40"
class="me-2"
/></a>
</div>
<p class="footer-desc mb-5">
We offer tailored investment solutions focused on your goals and
objectives. Our mutual funds help enhance seamless wealth transfer
between generations for families.
</p>
<div class="social-links mb-4">
<a href="#" class="me-3"
><img src="./assests/images/youtube.svg" alt=""
/></a>
<a href="#" class="me-3"
><img src="./assests/images/twitter.svg" alt=""
/></a>
<a href="#" class="me-3"
><img src="./assests/images/facebook.svg" alt=""
/></a>
<a href="#"><img src="./assests/images/lin.svg" alt="" /></a>
</div>
<!-- <div class="d-flex gap-2">
<a href="#"><img src="https://upload.wikimedia.org/wikipedia/commons/7/78/Google_Play_Store_badge_EN.svg" height="40" alt="Google Play"></a>
<a href="#"><img src="https://developer.apple.com/assets/elements/badges/download-on-the-app-store.svg" height="40" alt="App Store"></a>
</div> -->
</div>
<!-- Quick Links -->
<div class="col-lg-3 col-md-6">
<h6 class="footer-heading mb-3">QUICK LINKS</h6>
<ul class="list-unstyled footer-links">
<li><a href="#">Mutual Fund Categories</a></li>
<li><a href="#/blog">Blogs</a></li>
<li><a href="#/about">About Us</a></li>
<li><a href="#">Compare Funds</a></li>
<li><a href="#">FAQs</a></li>
<li><a href="#">News and Insights</a></li>
</ul>
</div>
<!-- Resources -->
<div class="col-lg-3 col-md-6">
<h6 class="footer-heading mb-3">RESOURCES</h6>
<ul class="list-unstyled footer-links">
<li><a href="#">NAV & Fund Performance</a></li>
<li><a href="#">Disclosures</a></li>
<li><a href="#">Track Application</a></li>
</ul>
</div>
<!-- Get In Touch -->
<div class="col-lg-2 col-md-6">
<h6 class="footer-heading mb-3">GET IN TOUCH</h6>
<ul class="list-unstyled footer-links">
<li><a href="#">Careers</a></li>
<li><a href="#">Our Locations</a></li>
<li><a href="#">Log In</a></li>
<li><a href="#/contact">Contact Us</a></li>
</ul>
</div>
</div>
<hr class="footer-line mt-5 mb-4" />
<!-- Bottom Bar -->
<div
class="d-flex flex-wrap justify-content-between align-items-center text-white-50 small"
>
<div class="footer-bottom-links">
<a href="#" class="size-footer">Disclosures</a>
<a href="#" class="size-footer">Privacy Policy</a>
<a href="#" class="size-footer">Disclaimer</a>
</div>
<div class="text-adjust">
<p class="d-lg-none mb-2 ">© 2025 ASK Investment Managers.</p>
<p class="d-lg-none">All rights reserved.</p>
<!-- Large screen (single line) -->
<h2 class="d-none d-lg-block">
© 2025 ASK Investment Managers. All rights reserved.
</h2>
</div>
</div>
</div>
</footer>