import { IconExternalLink } from '@tabler/icons-react' import { Stack, Text, List, Divider, Group, Anchor } from '@pikku/mantine/core' import { useI18n } from '@/context/i18n-provider' import { asI18n } from '@pikku/react' export default function GetHelp() { const t = useI18n() return ( {t('jobs.gethelp.description')} {t('jobs.gethelp.services.explainprocess')} {t('jobs.gethelp.services.helpdocuments')} {t('jobs.gethelp.services.reviewapplication')} {t('jobs.gethelp.services.supportcommunication')} {t('jobs.gethelp.services.adviserequirements')} {t('jobs.gethelp.support')} {t('jobs.gethelp.organizations.dare.name')} {asI18n(`${t('jobs.gethelp.organizations.dare.phone')}: +49 (0)175 2264572`)} {asI18n('Whatsapp: +49-17163442306')} {asI18n(`${t('jobs.gethelp.organizations.dare.email')}: `)} {asI18n('info@dareconsulting.de')} {t('jobs.gethelp.organizations.bamf.website')} {asI18n(`${t('jobs.gethelp.organizations.dare.languages')}: English, German, Spanish`)} {t('jobs.gethelp.organizations.bamf.name')} {asI18n(`${t('jobs.gethelp.organizations.bamf.phone')}: +49 (0) 30 1815 1111`)} {t('jobs.gethelp.organizations.bamf.contactform')} {t('jobs.gethelp.organizations.bamf.website')} {asI18n(`${t('jobs.gethelp.organizations.bamf.languages')}: English, German`)} {t('jobs.gethelp.organizations.gesbit.name')} {asI18n(`${t('jobs.gethelp.organizations.gesbit.phone')}: +49 (0)30 / 31510900`)} {t('jobs.gethelp.organizations.gesbit.website')} {asI18n(`${t('jobs.gethelp.organizations.gesbit.languages')}: Turkish, Ukrainian, English, German`)} {t('jobs.gethelp.organizations.clubdialog.name')} {asI18n(`${t('jobs.gethelp.organizations.clubdialog.email')}: `)} {asI18n('anerkennung@club-dialog.de')} {asI18n(`${t('jobs.gethelp.organizations.clubdialog.phone')}: +49 (0)30 / 263 476 05`)} {t('jobs.gethelp.organizations.clubdialog.website')} {asI18n(`${t('jobs.gethelp.organizations.clubdialog.languages')}: Russian, Polish, Ukrainian, English, German`)} {t('jobs.gethelp.organizations.lared.name')} {asI18n(`${t('jobs.gethelp.organizations.lared.email')}: `)} {asI18n('anerkennung@la-red.eu')} {asI18n(`${t('jobs.gethelp.organizations.lared.phone')}: +49 (0)30 / 457 989 555`)} {t('jobs.gethelp.organizations.lared.website')} {asI18n(`${t('jobs.gethelp.organizations.lared.languages')}: Spanish, French, Italian, Arabic, English, German`)} {t('jobs.gethelp.organizations.tbb.name')} {asI18n(`${t('jobs.gethelp.organizations.tbb.email')}: `)} {asI18n('diploma@tbb-berlin.de')} {asI18n(`${t('jobs.gethelp.organizations.tbb.phone')}: +49 (0)30 / 236 233 25`)} {t('jobs.gethelp.organizations.tbb.website')} {asI18n(`${t('jobs.gethelp.organizations.tbb.languages')}: Turkish, Arabic, Russian, English, German`)} ) }