This commit is contained in:
2025-02-03 15:00:31 -05:00
parent 2a22744b06
commit a2f6aef11a
2 changed files with 14 additions and 15 deletions

View File

@@ -1,15 +1,14 @@
import constants from "@src/lib/constants";
export default function Footer() {
const year = new Date().getFullYear();
return (
(
<footer className="bg-gray-950 text-white py-4">
<div className="container mx-auto px-6 text-center">
<p>&copy; {new Date().getFullYear()} {constants.APP_NAME}. All rights reserved.</p>
<p>Built by Forward Group </p>
</div>
</footer>
)
<footer className="bg-gray-950 text-white py-4">
<div className="container mx-auto px-6 text-center">
<p>&copy; {year} {constants.APP_NAME}. All rights reserved.</p>
<p>Built by Forward Group </p>
</div>
</footer>
)
}