chore: heygermany customer project
Some checks failed
Main / Setup and Test (push) Has been cancelled
Main / Build Website (push) Has been cancelled

This commit is contained in:
e2e
2026-07-11 09:21:21 +02:00
commit 59b4a7a404
398 changed files with 38340 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
'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 (
<Stack gap="md" mt="md">
<Text lineBreaks>{t('jobs.howtoapply.intro1')}</Text>
<Text>
{asI18n(`${t('jobs.howtoapply.applicationform')} `)}
<Anchor
href="/pdf/Application_Form_Nurse.pdf"
target="_blank"
rel="noopener noreferrer"
c="primary"
td="underline"
fw={700}
>
{asI18n('here')}
</Anchor>
</Text>
<Text lineBreaks>{t('jobs.howtoapply.reminder')}</Text>
<Text lineBreaks>{t('jobs.howtoapply.submission')}</Text>
<Divider />
<Title order={4}>{t('jobs.howtoapply.contacttitle')}</Title>
<Text lineBreaks>{t('jobs.howtoapply.contact.address')}</Text>
<Text>
{asI18n('Email: ')}
<Anchor
href={`mailto:${t('jobs.howtoapply.contact.email')}`}
c="primary"
fw={700}
>
{t('jobs.howtoapply.contact.email')}
</Anchor>
</Text>
<Text>{asI18n(`Phone: ${t('jobs.howtoapply.contact.phone')}`)}</Text>
<Text lineBreaks>{t('jobs.howtoapply.contact.hours')}</Text>
<Card withBorder padding="md" radius="sm" mt="md">
<Text lineBreaks>{t('jobs.howtoapply.tip')}</Text>
</Card>
<Text lineBreaks>{t('jobs.howtoapply.waiver')}</Text>
<Divider />
<Text lineBreaks>{t('jobs.howtoapply.counseling')}</Text>
</Stack>
)
}