'use client' import { Stack, Text, Divider, Anchor, Title, Card } from '@pikku/mantine/core' import { useI18n } from '@/context/i18n-provider' import { asI18n } from '@pikku/react' export default function HowToApply() { const t = useI18n() return ( {t('jobs.howtoapply.intro1')} {asI18n(`${t('jobs.howtoapply.applicationform')} `)} {asI18n('here')} {t('jobs.howtoapply.reminder')} {t('jobs.howtoapply.submission')} {t('jobs.howtoapply.contacttitle')} {t('jobs.howtoapply.contact.address')} {asI18n('Email: ')} {t('jobs.howtoapply.contact.email')} {asI18n(`Phone: ${t('jobs.howtoapply.contact.phone')}`)} {t('jobs.howtoapply.contact.hours')} {t('jobs.howtoapply.tip')} {t('jobs.howtoapply.waiver')} {t('jobs.howtoapply.counseling')} ) }