chore: 404 page

This commit is contained in:
karl 2025-03-28 15:37:08 -04:00
parent 3f3d4a8bcc
commit 9a190f7c36

View File

@ -1,5 +1,6 @@
import NotFound from '@/app/not-found'
import { notFound } from 'next/navigation'
export default function CatchAllNotFoundPage() {
notFound()
return <NotFound />
}