import React from 'react' import { MarketingDrawer, PageTitle } from '@app/components/general' import { metaSetter } from '@app/utils' import { GrHelp } from 'react-icons/gr' import type { PageProps } from '@app/types' const PageNotFound = ({ name }: PageProps) => { return ( 404

Page not found.

If the issue continues please try again later or contact support.

) } export default metaSetter( { PageNotFound }, { description: 'Page not found. Try checking the url, if issues persist please contact support.', } )