// next imports import { observer } from "mobx-react-lite"; import Image from "next/image"; // hooks import { useInstance } from "@/hooks/store"; // images import notFoundImage from "public/404.svg"; const Custom404Error = observer(() => { // hooks const { instance } = useInstance(); const redirectionUrl = instance?.config?.app_base_url || "/"; return (
404- Page not found
Oops! Something went wrong.
Sorry, the page you are looking for cannot be found. It may have been removed, had its name changed, or is temporarily unavailable.
Go to your Workspace
); }); export default Custom404Error;