import Link from 'next/link'; import { FaceFrownIcon } from "@heroicons/react/24/outline"; import { FC } from 'react'; export interface NotFoundPageProps { title?:string, description?:string, } export const NotFoundPage:FC = ({ title="404 Not Found", description="Could not find the requested content." }) =>

{title}

{description}

Go Back