fix: build

This commit is contained in:
paolosantarsiero 2024-12-31 11:50:44 +01:00
parent 0843d1219d
commit e55b806aa4
2 changed files with 11 additions and 5 deletions

View File

@ -1,5 +0,0 @@
import { notFound } from 'next/navigation';
export default function NotFoundCatchAll() {
notFound();
}

11
app/not-found.tsx Normal file
View File

@ -0,0 +1,11 @@
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>
)
}