- yarn
- yarn start
- https://chakra-ui.com/
to add transaltion:
- go to src/utils/locales and fill all translation (for example en.json)
- in place You want to use this
import { useTranslation } from 'react-i18next';
const { t } = useTranslation();
and then use this in html like this
<Text>{t(default.default)}</Text>