()
| 1 | import Link from "next/link"; |
| 2 | |
| 3 | export function Footer() { |
| 4 | return ( |
| 5 | <footer className="hidden sm:block fixed bottom-4 left-4 rounded-md bg-background p-2"> |
| 6 | Made with 🪓 by{" "} |
| 7 | <Link |
| 8 | className="underline" |
| 9 | href="https://orcdev.com" |
| 10 | rel="noopener noreferrer" |
| 11 | target="_blank" |
| 12 | > |
| 13 | OrcDev |
| 14 | </Link> |
| 15 | </footer> |
| 16 | ); |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected