"use client"; import Image from "next/image"; import { useTheme } from "next-themes"; import { Button } from "@plane/ui"; // assets import InstanceFailureDarkImage from "@/public/instance/instance-failure-dark.svg"; import InstanceFailureImage from "@/public/instance/instance-failure.svg"; export default function InstanceError() { const { resolvedTheme } = useTheme(); const instanceImage = resolvedTheme === "dark" ? InstanceFailureDarkImage : InstanceFailureImage; const handleRetry = () => { window.location.reload(); }; return (
Plane instance failure image

Unable to fetch instance details.

We were unable to fetch the details of the instance.
Fret not, it might just be a connectivity issue.

); }