mirror of
https://github.com/vercel/commerce.git
synced 2025-06-28 09:21:22 +00:00
11 lines
217 B
TypeScript
11 lines
217 B
TypeScript
import Link from 'next/link'
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div>
|
|
<h2>Not Found</h2>
|
|
<p>Could not find requested resource</p>
|
|
<Link href="/">Return Home</Link>
|
|
</div>
|
|
)
|
|
} |