mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-05 18:26:45 -05:00
14 lines
331 B
TypeScript
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>© {new Date().getFullYear()} Firearm Builder. All rights reserved.</p>
|
||
|
|
</div>
|
||
|
|
</footer>
|
||
|
|
)
|
||
|
|
)
|
||
|
|
}
|