Files
ballistic-builder/src/app/(siteInfo)/Footer/page.tsx

14 lines
391 B
TypeScript
Raw Normal View History

2024-12-13 12:16:29 -05:00
import constants from "@src/lib/constants";
2024-11-20 14:53:30 -05:00
export default function Footer() {
2025-02-03 15:00:31 -05:00
const year = new Date().getFullYear();
2024-11-20 14:53:30 -05:00
return (
2025-02-03 15:00:31 -05:00
<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>
2024-11-20 14:53:30 -05:00
)
}