Files
ballistic-builder/src/components/Footer /index.tsx
2024-11-21 15:46:29 -05:00

16 lines
374 B
TypeScript

import Link from "next/link";
export default function Footer() {
return (
(
<footer className="bg-gray-800 text-white py-4">
<div className="container mx-auto px-6 text-center">
<p>&copy; {new Date().getFullYear()} Ballistic Builder. All rights reserved.</p>
<p>Built by Forward Group</p>
</div>
</footer>
)
)
}