feat: add a catch-all 404

This commit is contained in:
Dariusz Niemczyk 2025-02-15 01:02:59 +01:00
parent 0072eac5d2
commit 281f3a9a89
No known key found for this signature in database

View file

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