1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-28 12:16:58 +00:00

chore: 404 page

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

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