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;