mirror of
https://github.com/vercel/commerce.git
synced 2025-06-28 09:21:22 +00:00
12 lines
219 B
TypeScript
12 lines
219 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>
|
|
);
|
|
}
|