()
| 9 | }; |
| 10 | |
| 11 | export default function NotFound() { |
| 12 | return ( |
| 13 | <div className="grid h-screen w-full place-content-center gap-5 bg-background px-4 text-center"> |
| 14 | <Image |
| 15 | alt="GitHub Creature 404" |
| 16 | height={300} |
| 17 | src="/github-creature-logo.png" |
| 18 | width={300} |
| 19 | /> |
| 20 | |
| 21 | <h1 className="font-bold text-2xl tracking-tight sm:text-4xl">Uh-oh!</h1> |
| 22 | |
| 23 | <p className="text-gray-500">You are lost.</p> |
| 24 | <Link className={buttonVariants({ variant: "outline" })} href="/"> |
| 25 | Return to Home Page |
| 26 | </Link> |
| 27 | </div> |
| 28 | ); |
| 29 | } |
nothing calls this directly
no outgoing calls
no test coverage detected