"use client"; import Image from "next/image"; import Link from "next/link"; // ui import { Button } from "@plane/propel/button"; // images import Image404 from "@/app/assets/404.svg?url"; // types import type { Route } from "./+types/not-found"; export const meta: Route.MetaFunction = () => [ { title: "404 - Page Not Found" }, { name: "robots", content: "noindex, nofollow" }, ]; const PageNotFound = () => (
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;