altarra/src/components/Footer.tsx
2026-01-08 18:18:26 +00:00

25 lines
779 B
TypeScript

"use client"
import Link from 'next/link'
export default function Footer() {
return (
<footer className="mt-12 border-t border-gray-200 bg-white py-8">
<div className="mx-auto max-w-2xl px-4">
<p className="text-center text-sm font-medium text-gray-900">
© 2026 APP Associação Portuguesa de Powerlifting
</p>
<p className="mt-3 text-center text-xs text-gray-500">
feito por{' '}
<Link href="https://comfy.solutions" className="hover:underline">
comfy.solutions
</Link>
{' '}{' '}
<Link href="https://comfy.fillout.com/altarra-errors" className="hover:underline">
Erros? Informe-nos!
</Link>
</p>
</div>
</footer>
)
}