This codebase is a simple flashcard app for learning Igbo. It's built with React, Vite, and Tailwind CSS.
The words are inspired by the Swadesh list, and our word->translation list is maintained in this Google Sheet.
The audio is generated using this script, which uses
- the macos
say
command to generate the audio for english words. - this spitch.app api to generate the audio for igbo words and phrases.
- the
ffmpeg
command to convert the audio to mp3.
Note
There is a bit of noise at the end of the audio files that sometimes sounds like "gbu". It's not deliberate, and I am discussing with the folks at spitch.app to see if they can fix it.
Feedback on words, examples and translations at https://mykeels.github.io/igbo-flashcards
Did you find an incorrect translation, perhaps? Or a missing example?
Please let me know.
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- @vitejs/plugin-react uses Babel for Fast Refresh
- @vitejs/plugin-react-swc uses SWC for Fas 6E61 t Refresh
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level
parserOptions
property like this:
export default tseslint.config({
languageOptions: {
// other options...
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: import.meta.dirname,
},
},
})
- Replace
tseslint.configs.recommended
totseslint.configs.recommendedTypeChecked
ortseslint.configs.strictTypeChecked
- Optionally add
...tseslint.configs.stylisticTypeChecked
- Install eslint-plugin-react and update the config:
// eslint.config.js
import react from 'eslint-plugin-react'
export default tseslint.config({
// Set the react version
settings: { react: { version: '18.3' } },
plugins: {
// Add the react plugin
react,
},
rules: {
// other rules...
// Enable its recommended rules
...react.configs.recommended.rules,
...react.configs['jsx-runtime'].rules,
},
})