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

Server Error.

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

) } export default metaSetter( { PageNotFound }, { description: 'A server error occurred, please contact support if issues persist.', } )