6.**`/src/intl`**: Translation files used by `react-intl`.
7.**`/src/pages`**: Every `js` file represents a page which path is exactly like the folder structure and filename.
**Note**: Every file starting with an underscore (`_`) in the pages directory is ignored. Those pages are mostly being used for client-only routes. Therefore no page route is created and no server-side rendering performed.
**Note**: Every file starting with an underscore (`_`) in the pages directory is ignored. Those pages are mostly being used for client-only routes. Therefore no page route is created and no server-side rendering performed.
_Example: The file `/src/pages/amiv/about.js` will serve the component defined in that file as a page at the path `/amiv/about`._
_Example: The file `/src/pages/amiv/about.js` will serve the component defined in that file as a page at the path `/amiv/about`._
7.**`/src/store`**: This directory contains all files related to data handling using `react-redux`.
8.**`/src/utils`**: Collection of utility functions.
9.**`/src/theme.js`**: Theme definition for light/dark mode (dimensions, colors, etc.)
8.**`/src/store`**: This directory contains all files related to data handling using `react-redux`.
9.**`/src/utils`**: Collection of utility functions.
10.**`/src/theme.js`**: Theme definition for light/dark mode (dimensions, colors, etc.)