mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
16 lines
374 B
TypeScript
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>© {new Date().getFullYear()} Ballistic Builder. All rights reserved.</p>
|
|
<p>Built by Forward Group</p>
|
|
|
|
</div>
|
|
</footer>
|
|
)
|
|
)
|
|
} |