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

16 lines
378 B
TypeScript
Raw Normal View History

2024-11-20 14:53:30 -05:00
import Link from "next/link";
export default function Footer() {
return (
(
2024-11-21 16:10:16 -05:00
<footer className="bg-gray-950 text-white py-4">
2024-11-20 14:53:30 -05:00
<div className="container mx-auto px-6 text-center">
2024-11-21 15:46:29 -05:00
<p>&copy; {new Date().getFullYear()} Ballistic Builder. All rights reserved.</p>
2024-11-21 16:10:16 -05:00
<p>Built by Forward Group </p>
2024-11-21 15:46:29 -05:00
2024-11-20 14:53:30 -05:00
</div>
</footer>
)
)
}