1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-05-29 22:37:44 +02:00

fix: error 404 not found

This commit is contained in:
2024-12-06 09:30:49 +01:00
parent d52a0c6f08
commit 3f66dfe46e

View File

@ -0,0 +1,7 @@
import { notFound } from "next/navigation"
const CatchAllPage: React.FC = () => {
return notFound()
}
export default CatchAllPage