commerce/app/not-found.tsx
2025-01-02 12:16:25 +01:00

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>
);
}