mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
14 lines
179 B
TypeScript
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>
|
|
)
|
|
}
|