import { SupportFormPage } from '@/components/interfaces/Support/SupportFormPage'
import { AppLayout } from '@/components/layouts/AppLayout/AppLayout'
import { DefaultLayout } from '@/components/layouts/DefaultLayout'
import { withAuth } from '@/hooks/misc/withAuth'
import type { NextPageWithLayout } from '@/types'
const SupportPage: NextPageWithLayout = () => {
return
}
SupportPage.getLayout = (page) => (
{page}
)
export default withAuth(SupportPage, { useHighestAAL: false })