2025-07-22 11:36:16 +05:30

97 lines
3.3 KiB
JavaScript

import Link from "next/link"
export default function Footer2() {
return (
<>
{/* Main Footer */}
<footer className="footer-style-two">
<div className="auto-container">
{/* Widgets Section */}
<div className="widgets-section">
<div className="row clearfix">
{/* Big Column */}
<div className="big-column col-lg-6 col-md-12 col-sm-12">
<div className="row clearfix">
{/*Footer Column*/}
<div className="footer-column col-lg-6 col-md-6 col-sm-12">
<div className="footer-widget logo-widget">
<div className="logo">
<Link href="/"><img src="/assets/images/logo/logo-white.png" alt="" /></Link>
</div>
<div className="text">Bold street food made fresh.<br /> Wings, wraps, dosas & more - all packed with flavor and attitude.</div>
</div>
</div>
{/*Footer Column*/}
<div className="footer-column col-lg-6 col-md-6 col-sm-12">
<div className="footer-widget contact-widget">
<h6>Useful Links</h6>
<ul className="contact-list">
<li><Link href="#about">About</Link></li>
<li><Link href="#popular-dishes">Popular Dishes</Link></li>
<li><Link href="#sixty5-street-specials">Sixty5 Street Specials</Link></li>
<li><Link href="#menu">Menu</Link></li>
{/* <li><Link href="tel:+289-498-6565">289-498-6565</Link></li> */}
</ul>
</div>
</div>
</div>
</div>
{/* Big Column */}
<div className="big-column col-lg-6 col-md-12 col-sm-12">
<div className="row clearfix">
{/*Footer Column*/}
<div className="footer-column col-lg-6 col-md-6 col-sm-12">
<div className="footer-widget visit-widget">
<h6>Contact</h6>
<ul className="contact-list">
<li><Link href="tel:+289-498-6565" style={{ color: 'white' }}>289-498-6565</Link></li>
</ul>
{/* <div className="text">6Fifth Avenue 5501, Broadway, <br /> New York Morris Street <br /> London 1234</div> */}
</div>
</div>
{/*Footer Column*/}
<div className="footer-column col-lg-6 col-md-6 col-sm-12">
<div className="footer-widget social-widget">
<h6>Follow Us Now</h6>
<ul className="social-list">
<li><Link href="#"><span className="icon fa fa-facebook"></span>facebook</Link></li>
<li><Link href="#"><span className="icon fa fa-twitter"></span>twitter</Link></li>
<li><Link href="#"><span className="icon fa fa-instagram"></span>instagram</Link></li>
{/* <li><Link href="#"><span className="icon fa fa-dribbble"></span>dribbble</Link></li> */}
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div className="footer-bottom">
<div className="auto-container">
<div className="copyright">
Copyright {new Date().getFullYear()} © Foodily. Powered by{" "}
<a
href="https://metatroncubesolutions.com/"
target="_blank"
rel="noopener noreferrer"
style={{ color: "#cf2d1f" }}
>
MetatronCube
</a>. All Rights Reserved.
</div>
</div>
</div>
</footer>
</>
)
}