/** * Copyright (c) 2023-present Plane Software, Inc. and contributors * SPDX-License-Identifier: AGPL-3.0-only * See the LICENSE file for details. */ import React from "react"; import { Link } from "react-router"; // ui import { Button } from "@plane/propel/button"; // images import Image404 from "@/app/assets/images/404.svg?url"; function PageNotFound() { 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.

); } export default PageNotFound;