MCPcopy Create free account
hub / github.com/TheOrcDev/github-creature / NotFound

Function NotFound

app/not-found.tsx:11–29  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

9};
10
11export 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected