* [site,seo][xs]: add custom _document with lang prop, add description to meta tags, make title larger
* [site,seo][xs]: add apple touch icon, add alt props to images
* [site,seo][xs]: add icon to default seo
* [site,seo][s]: implement next-sitemap
* [site,seo][s]: review page titles
* Rebuild package-lock.json files
* Regenerate package-lock
* [components,excel][m]: initial version of the <Excel /> component
* [components,excel][m]: add support for multiple sheets
* [components,map,excel][l]: fix leaflet map markers on prod and implement excel component
* Bump version
* [components,excel][xs]: change data for one of the stories
Closes#905
## Summary
This PR sets up changesets with the aim to simplify the process of documenting changes committed to the codebase, as well as automating versioning packages and publishing them to npm.
## Changes
- initialised [changesets](https://github.com/changesets/changesets) in the repository
- (separately from this PR) installed [changesets bot](https://github.com/apps/changeset-bot) in the repository (it will check if a submitted PR includes a changeset file and inform if found or not)
- added `.github/workflows/release.yml`: The workflow creates a PR with version bumps and related changelog
files' updates, each time a commit containing changeset
file(s) is added to the main branch. After merging this auto-generated PR, this workflow will also auto-publish the released packages to npm and add git tags.
- added the following scripts to the root `package.json`:
- `changeset`: should be run to generate changeset files, that describe changes made to the code,
- `prerelease`: runs linting and testing on packages affected by the changes in a PR
- `release`: runs `changeset publish` and is used by the `release` workflow then the above-mentioned auto-generated PR is merged to the main branch