first commit

This commit is contained in:
dev-chiefworks
2024-01-10 11:05:21 -05:00
commit 2ce13271d8
1398 changed files with 91003 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
'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"
>
ib-themes
</a>{" "}
inc.
</p>
</div>
</div>
// /.bottom-footer
);
};
export default CopyRightTwo;