Files
ballistic-builder/src/components/site/Footer/index.tsx
2024-12-13 12:16:29 -05:00

16 lines
395 B
TypeScript

import constants from "@src/lib/constants";
export default function Footer() {
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>
)
)
}