Files
dokploy/apps/website/app/not-found.tsx
2024-09-06 13:42:07 +08:00

14 lines
179 B
TypeScript

'use client'
import Error from 'next/error'
export default function NotFound() {
return (
<html lang="en">
<body>
<Error statusCode={404} />
</body>
</html>
)
}