Files
ballistic-builder/src/components/Footer /index.tsx

15 lines
410 B
TypeScript
Raw Normal View History

2024-11-20 14:53:30 -05:00
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">
2024-11-21 13:03:00 -05:00
{/* <p>&copy; {new Date().getFullYear()} Ballistic Builder. All rights reserved.</p> */}
<p>&copy; 2024 Ballistic Builder. All rights reserved.</p>
2024-11-20 14:53:30 -05:00
</div>
</footer>
)
)
}