mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 21:11:31 +01:00
8 lines
134 B
TypeScript
8 lines
134 B
TypeScript
import { notFound } from "next/navigation"
|
|
|
|
const CatchAllPage: React.FC = () => {
|
|
return notFound()
|
|
}
|
|
|
|
export default CatchAllPage
|