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