diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json index e6bbc92..132a916 100644 --- a/public/locales/en/translation.json +++ b/public/locales/en/translation.json @@ -22,5 +22,10 @@ "discord": "Discord handle", "subject": "Subject", "message": "Message", - "send": "Send" + "send": "Send", + + "joinUs": "Join us", + "weAccept": "We welcome everyone with the right mindse!", + "specialization": "Specialzation", + "motivation": "Motivation" } diff --git a/public/locales/nl/translation.json b/public/locales/nl/translation.json index 7749ac9..0aeb364 100644 --- a/public/locales/nl/translation.json +++ b/public/locales/nl/translation.json @@ -21,5 +21,10 @@ "discord": "Discord handle", "subject": "Onderwerp", "message": "Bericht", - "send": "Verstuur" + "send": "Verstuur", + + "joinUs": "Wil je er ook bij", + "weAccept": "Wij verwelkomen iedereen met de juiste intenties!", + "specialization": "Richting", + "motivation": "Motivatie" } diff --git a/src/pages/join/index.tsx b/src/pages/join/index.tsx index 768fd2f..16c3847 100644 --- a/src/pages/join/index.tsx +++ b/src/pages/join/index.tsx @@ -1,10 +1,62 @@ import Image from 'next/image'; +import { useTranslation } from 'react-i18next'; +import { useRouter } from 'next/router'; import join from '@/../public/join.gif'; +import styles from '@/styles/contact.module.scss'; export default function Join() { + const { t } = useTranslation(); + const router = useRouter(); return (