import { StartApplication } from '@/components/jobs/form/StartApplication' import { useI18n } from '@/context/i18n-provider' import { Container, Box, Stack, Title, Text, List, Grid } from "@pikku/mantine/core" const ApplyPage: React.FunctionComponent = () => { const t = useI18n() return ( {/* Who is This For Section */} {t('jobs.apply.whoisthisfor.title')} {t('jobs.apply.whoisthisfor.description')} {t('jobs.apply.whatyoullget.title')} {t('jobs.apply.whatyoullget.item1')} {t('jobs.apply.whatyoullget.item2')} {t('jobs.apply.whatyoullget.item3')} {t('jobs.apply.whatyoullneed.title')} {t('jobs.apply.whatyoullneed.item1')} {t('jobs.apply.whatyoullneed.item2')} {t('jobs.apply.whatyoullneed.item3.title')}
{t('jobs.apply.whatyoullneed.item3.note')}
{t('jobs.apply.whatyoullneed.item4.title')}
{t('jobs.apply.whatyoullneed.item4.note')}
{/* Get Your Results Section */} {t('jobs.apply.getyourresults.title')} {t('jobs.apply.getyourresults.description')}
) } export default ApplyPage