Files
ballistic-builder/app/components/Footer /index.tsx
2024-11-20 14:53:30 -05:00

14 lines
331 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()} Firearm Builder. All rights reserved.</p>
</div>
</footer>
)
)
}