1
0
mirror of https://github.com/theoludwig/theoludwig.git synced 2026-05-06 13:48:12 +02:00
Files
.profile/apps/website/app/[locale]/(main)/[...rest]/page.tsx
T
2024-12-06 09:30:49 +01:00

8 lines
134 B
TypeScript

import { notFound } from "next/navigation"
const CatchAllPage: React.FC = () => {
return notFound()
}
export default CatchAllPage