()
| 5 | import Link from 'next/link' |
| 6 | |
| 7 | export 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected