Files
CHIEFSOFT\ameye 72e40391d8 Bread Agency
2025-02-21 20:48:56 -05:00

27 lines
584 B
React

'use client'
import React from "react";
const CopyRightTwo = () => {
return (
<div className="bottom-footer-content">
<div className="d-flex align-items-center justify-content-center">
<p>
{" "}
Copyright @{new Date().getFullYear()}{" "}
<a
href="https://themeforest.net/user/ib-themes/portfolio"
target="_blank"
rel="noopener noreferrer"
>
Bread Agency
</a>{" "}
</p>
</div>
</div>
// /.bottom-footer
);
};
export default CopyRightTwo;