website/app/components/NotFoundPage.tsx
2024-12-30 21:13:33 +01:00

31 lines
882 B
TypeScript

import { ExclamationTriangleIcon } from "@heroicons/react/24/outline";
import { Links, Meta, Scripts } from "@remix-run/react";
import EmptyCard from "~/components/EmptyCard";
export default function NotFoundPage() {
return (
<html>
<head>
<title>JetKVM - 404 Not found</title>
<Meta />
<Links />
</head>
<body>
{/* add the UI you want your accounts to see */}
<div className="h-full w-full">
<div className="flex h-full items-center justify-center">
<div className="w-full max-w-2xl">
<EmptyCard
IconElm={ExclamationTriangleIcon}
headline="Not found"
description="The page you were looking for does not exist."
/>
</div>
</div>
</div>
<Scripts />
</body>
</html>
);
}