Files
fiberops-web-admin/src/app/not-found.tsx

11 lines
213 B
TypeScript

export default function NotFound() {
return (
<html lang="en">
<body>
<h1>404 - Page Not Found</h1>
<p>The page you are looking for does not exist.</p>
</body>
</html>
);
}