103 lines
5.4 KiB
PHP
103 lines
5.4 KiB
PHP
</main>
|
|
<footer id="site-footer" class="main-footer">
|
|
<div class="footer-graphics"></div>
|
|
<section class="lqd-section footer-content text-black" data-section-luminosity="dark">
|
|
<div class="container footer-inside">
|
|
<div class="row pb-10 ">
|
|
<div class="col col-6 col-md-3 flex flex-col text-start mb-20 p-10">
|
|
<div class=" mb-25 lqd-imggrp-single block relative">
|
|
<div class=" lqd-imggrp-img-container inline-flex relative items-center justify-center">
|
|
<h2 class="text-black text-24">{{ setting('title') }}</h2>
|
|
</div>
|
|
</div>
|
|
<div class=" ld-fancy-heading relative">
|
|
|
|
<p class="ld-fh-element inline-block relative text-16 leading-20 mb-1em text-black lg:m-0">
|
|
{{ setting('description') }}
|
|
</p>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@foreach ($footerMenus as $menu)
|
|
<div class="col col-6 col-md-3 flex flex-col items-center">
|
|
<div>
|
|
<div class="mb-20 ld-fancy-heading relative module-title">
|
|
<h3
|
|
class="ld-fh-element inline-block relative font-title text-15 font-bold leading-20 mb-1em text-black">
|
|
{{ $menu->title }}
|
|
</h3>
|
|
</div>
|
|
<div class="lqd-fancy-menu lqd-custom-menu relative left lqd-menu-td-none">
|
|
<ul
|
|
class="reset-ul link-14 link-font-normal flex flex-col justify-center text-center gap-10">
|
|
@if ($menu->hasSubMenu())
|
|
@foreach ($menu->children as $subMenu)
|
|
<li>
|
|
<a class="text-black btn btn-naked btn-icon-right btn-hover-swp animation-element"
|
|
data-localscroll="true" href="{{ $subMenu->route_name }}"><span
|
|
class="link-icon inline-flex hide-if-empty left-icon icon-next-to-label"></span>
|
|
<span class="btn-txt"
|
|
data-text="Franchise">{{ $subMenu->title }}</span>
|
|
</a>
|
|
</li>
|
|
@endforeach
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
|
|
|
|
<div class="col col-12 col-md-4 flex flex-col p-10">
|
|
<div class="mb-20 ld-fancy-heading relative module-title">
|
|
<h3
|
|
class="ld-fh-element inline-block relative font-title text-15 font-bold leading-20 mb-1em text-black">
|
|
Subscribe for Newsletter
|
|
</h3>
|
|
</div>
|
|
<div class="lqd-fancy-menu lqd-custom-menu flex flex-col gap-5 relative left lqd-menu-td-none">
|
|
|
|
<form class="flex" action="">
|
|
<input class=" border-0 w-80percent px-20 text-14 py-10 text-black" type="email"
|
|
name="email" id="email" placeholder="Enter your Email">
|
|
<button class="border-0 text-white p-10 text-12 ">Subscribe</button>
|
|
</form>
|
|
|
|
<div class="flex gap-15 mt-10 flex-wrap social-icons-footer">
|
|
<a href="{{ setting('facebook') }}" target="blank"><i class="fa-brands fa-facebook"></i></a>
|
|
<a href="{{ setting('youtube') }}" target="blank"> <i class="fa-brands fa-youtube"></i></a>
|
|
<a href="{{ setting('instagram') }}" target="blank"> <i
|
|
class="fa-brands fa-square-instagram"></i></a>
|
|
<a href="{{ setting('tiktok') }}" target="blank"> <i class="fa-brands fa-tiktok"></i></a>
|
|
<a href="{{ setting('whatsapp') }}" target="blank"> <i
|
|
class="fa-brands fa-square-whatsapp"></i></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<section class="footer-logos">
|
|
<div class="container">
|
|
|
|
<div class="flex justify-center items-center">
|
|
<img src="{{ setting('other_image') }}" alt="">
|
|
</div>
|
|
|
|
|
|
<div class="container">
|
|
<div class="flex justify-between border-top pt-20 pb-30">
|
|
<p class="text-black text-12 text-medium m-0">{{ setting('copyright') }}</p>
|
|
<p class="text-black text-12 text-medium m-0">Designed by <a
|
|
href="https://www.bibhutisolutions.com/" target="blank"
|
|
class="text-black underline cursor-pointer">Bibhuti Solutions</a> </p>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</footer>
|