MCPcopy Create free account
hub / github.com/SyntaxUI/syntaxui / NotFound

Function NotFound

src/app/not-found.tsx:7–24  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5import Link from 'next/link'
6
7export default function NotFound() {
8 return (
9 <>
10 <Header />
11 <div className="justfiy-center mx-auto flex h-screen max-w-xl flex-col justify-center text-center">
12 <h1 className="mt-2 text-2xl font-bold text-zinc-900 dark:text-white">
13 Page not found
14 </h1>
15 <p className="mt-2 text-base text-zinc-600 dark:text-zinc-400">
16 Sorry, we couldn’t find the page you’re looking for.
17 </p>
18 <Link href="/">
19 <Button className="mt-8">Go Back</Button>
20 </Link>
21 </div>
22 </>
23 )
24}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected