Files
dev-chiefworks 2ce13271d8 first commit
2024-01-10 11:05:21 -05:00

55 lines
1.2 KiB
React

import React from "react";
const socialContent = [
{
icon: "fa-facebook",
link: "https://www.facebook.com/",
},
{
icon: "fa-twitter",
link: "https://twitter.com/",
},
{
icon: "fa-linkedin",
link: "https://www.linkedin.com/",
},
];
const CopyRightFour = () => {
return (
<div className="row">
<div className="col-lg-6 order-lg-2 mb-20">
<p className="copyright text-center text-lg-left">
Copyright @{new Date().getFullYear()}{" "}
<a
href="https://themeforest.net/user/ib-themes/portfolio"
target="_blank"
rel="noopener noreferrer"
>
ib-themes
</a>{" "}
inc.
</p>
</div>
<div className="col-lg-6 order-lg-3 mb-20">
<ul
className=" d-flex
justify-content-center justify-content-lg-end
social-icon"
>
{socialContent.map((val, i) => (
<li key={i}>
<a href={val.link} target="_blank" rel="noreferrer">
<i className={`fa ${val.icon}`}></i>
</a>
</li>
))}
</ul>
{/* End .social-icon */}
</div>
</div>
);
};
export default CopyRightFour;