dokploy/apps/website/app/not-found.tsx
2024-09-06 15:42:50 +08:00

14 lines
190 B
TypeScript

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