mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-05 18:26:45 -05:00
14 lines
391 B
TypeScript
14 lines
391 B
TypeScript
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>© {year} {constants.APP_NAME}. All rights reserved.</p>
|
|
<p>Built by Forward Group ⚡</p>
|
|
</div>
|
|
</footer>
|
|
)
|
|
} |