2024-05-14 08:56:54 +00:00
|
|
|
"use client";
|
|
|
|
|
2024-06-05 14:38:03 +00:00
|
|
|
// ui
|
2024-05-14 08:56:54 +00:00
|
|
|
import { Button } from "@plane/ui";
|
|
|
|
|
2024-06-05 14:38:03 +00:00
|
|
|
const ErrorPage = () => {
|
2024-05-14 08:56:54 +00:00
|
|
|
const handleRetry = () => {
|
|
|
|
window.location.reload();
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
2024-06-05 14:38:03 +00:00
|
|
|
<div className="grid h-screen place-items-center p-4">
|
|
|
|
<div className="space-y-8 text-center">
|
|
|
|
<div className="space-y-2">
|
|
|
|
<h3 className="text-lg font-semibold">Exception Detected!</h3>
|
|
|
|
<p className="mx-auto w-1/2 text-sm text-custom-text-200">
|
|
|
|
We{"'"}re Sorry! An exception has been detected, and our engineering team has been notified. We apologize
|
|
|
|
for any inconvenience this may have caused. Please reach out to our engineering team at{" "}
|
|
|
|
<a href="mailto:support@plane.so" className="text-custom-primary">
|
|
|
|
support@plane.so
|
|
|
|
</a>{" "}
|
|
|
|
or on our{" "}
|
|
|
|
<a
|
|
|
|
href="https://discord.com/invite/A92xrEGCge"
|
|
|
|
target="_blank"
|
|
|
|
className="text-custom-primary"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
|
|
|
Discord
|
|
|
|
</a>{" "}
|
|
|
|
server for further assistance.
|
2024-05-15 10:58:38 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
2024-06-05 14:38:03 +00:00
|
|
|
<div className="flex items-center justify-center gap-2">
|
|
|
|
<Button variant="primary" size="md" onClick={handleRetry}>
|
|
|
|
Refresh
|
2024-05-15 10:58:38 +00:00
|
|
|
</Button>
|
2024-06-05 14:38:03 +00:00
|
|
|
{/* <Button variant="neutral-primary" size="md" onClick={() => {}}>
|
|
|
|
Sign out
|
|
|
|
</Button> */}
|
2024-05-14 08:56:54 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2024-06-05 14:38:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default ErrorPage;
|