import React from "react"; import Link from "next/link"; import Image from "next/image"; // layouts import DefaultLayout from "layouts/default-layout"; // ui import { SecondaryButton } from "components/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.

Go to Home
); export default PageNotFound;