diff --git a/frontend/src/components/modals/welcome_modal.tsx b/frontend/src/components/modals/welcome_modal.tsx new file mode 100644 index 00000000..84b394fc --- /dev/null +++ b/frontend/src/components/modals/welcome_modal.tsx @@ -0,0 +1,22 @@ +import {Button, Modal, TextInput} from '@mantine/core'; +import {useTranslation} from 'next-i18next'; +import {useState} from 'react'; + +export default function WelcomeModal() { + const { t } = useTranslation(); + const [opened, setOpened] = useState(false); + + return ( + setOpened(false)} title={t('welcome_title')}> + + + + + ); +}