Some checks failed
Branch Build CE / Build Setup (push) Has been cancelled
Branch Build CE / Build-Push Admin Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Web Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Space Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Live Collaboration Docker Image (push) Has been cancelled
Branch Build CE / Build-Push API Server Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Proxy Docker Image (push) Has been cancelled
Branch Build CE / Build-Push AIO Docker Image (push) Has been cancelled
Branch Build CE / Upload Build Assets (push) Has been cancelled
Branch Build CE / Build Release (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Codespell / Check for spelling errors (push) Has been cancelled
Sync Repositories / sync_changes (push) Has been cancelled
Synced from upstream: 8853637e981ed7d8a6cff32bd98e7afe20f54362
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
"use client";
|
|
|
|
// ui
|
|
import { Button } from "@plane/propel/button";
|
|
|
|
const ErrorPage = () => {
|
|
const handleRetry = () => {
|
|
window.location.reload();
|
|
};
|
|
|
|
return (
|
|
<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">Yikes! That doesn{"'"}t look good.</h3>
|
|
<p className="mx-auto md:w-1/2 text-sm text-custom-text-200">
|
|
That crashed Plane, pun intended. No worries, though. Our engineers have been notified. If you have more
|
|
details, please write to{" "}
|
|
<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>
|
|
.
|
|
</p>
|
|
</div>
|
|
<div className="flex items-center justify-center gap-2">
|
|
<Button variant="primary" size="md" onClick={handleRetry}>
|
|
Refresh
|
|
</Button>
|
|
{/* <Button variant="neutral-primary" size="md" onClick={() => {}}>
|
|
Sign out
|
|
</Button> */}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ErrorPage;
|