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