2024-08-28 14:34:35 +00:00
|
|
|
const Footer = () => {
|
|
|
|
|
|
|
|
const currentYear = new Date().getFullYear();
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
2024-09-09 15:37:41 +00:00
|
|
|
<div>
|
|
|
|
<div className="footer_section layout_padding">
|
|
|
|
<div className="container">
|
|
|
|
<div className="row">
|
|
|
|
<div className="col-md-12">
|
|
|
|
|
2024-08-28 14:34:35 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-09-09 15:37:41 +00:00
|
|
|
<div className="footer_section_2">
|
|
|
|
<div className="row">
|
|
|
|
<div className="col-md-4">
|
|
|
|
<h2 className="useful_text">QUICK LINKS</h2>
|
|
|
|
<div className="footer_menu">
|
2024-08-28 14:34:35 +00:00
|
|
|
<ul>
|
2024-09-09 15:37:41 +00:00
|
|
|
<li><a href="index.html">Home</a></li>
|
|
|
|
<li><a href="about.html">About</a></li>
|
|
|
|
<li><a href="services.html">Services</a></li>
|
|
|
|
<li><a href="contact.html">Contact Us</a></li>
|
2024-08-28 14:34:35 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-09-09 15:37:41 +00:00
|
|
|
<div className="col-md-4">
|
|
|
|
<h2 className="useful_text">Work Portfolio</h2>
|
|
|
|
<p className="lorem_text">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem</p>
|
|
|
|
</div>
|
|
|
|
<div className="col-md-4">
|
|
|
|
<h2 className="useful_text">SIGN UP TO OUR NEWSLETTER</h2>
|
|
|
|
<div className="form-group">
|
|
|
|
<textarea className="update_mail" placeholder="Enter Your Email" rows={5} id="comment" name="Enter Your Email" defaultValue={""} />
|
|
|
|
<div className="subscribe_bt"><a href="#">Subscribe</a></div>
|
2024-08-28 14:34:35 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-09-09 15:37:41 +00:00
|
|
|
</div>
|
|
|
|
<div className="social_icon">
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href="#"><i className="fa fa-facebook" aria-hidden="true" /></a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="#"><i className="fa fa-twitter" aria-hidden="true" /></a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="#"><i className="fa fa-linkedin" aria-hidden="true" /></a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="#"><i className="fa fa-instagram" aria-hidden="true" /></a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{/* footer section end */}
|
|
|
|
{/* copyright section start */}
|
|
|
|
<div className="copyright_section">
|
|
|
|
<div className="container">
|
|
|
|
<div className="row">
|
|
|
|
<div className="col-sm-12">
|
|
|
|
<p className="copyright_text">{currentYear} All Rights Reserved.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{/* copyright section end */}
|
|
|
|
</div>
|
2024-08-28 14:34:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Footer;
|