mirror of
https://github.com/jetkvm/website.git
synced 2025-09-16 08:38:16 +00:00
31 lines
882 B
TypeScript
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>
|
|
);
|
|
}
|