import React from "react"; import Link from "next/link"; import Image from "next/image"; // layouts import DefaultLayout from "layouts/default-layout"; // ui import { Button } from "@plane/ui"; // images import Image404 from "public/404.svg"; // types import type { NextPage } from "next"; const PageNotFound: NextPage = () => (
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;