|  | Commit message (Collapse) | Author | Age | Files | Lines | 
|---|
| | 
| 
| 
| 
| | The previous component was too long and hardly readable. So I splitted
it in different part and added tests. | 
| | 
| 
| 
| 
| 
| 
| 
| 
| | * split pages in smaller components (it is both easier to maintain and
more readable, we avoid the use of fragments in pages directory)
* extract breadcrumbs from article tag (the navigation is not related
to the page contents)
* remove useReadingTime hook
* remove layout options except `isHome` | 
| | 
| 
| 
| 
| 
| 
| 
| | * remove SearchModal and SettingsModal components
* add a generic NavbarItem component (instead of the previous toolbar
items to avoid unreadable styles...)
* move FlippingLabel component logic into NavbarItem since it is only
used here | 
| | 
| 
| 
| 
| | They do not help to make the layout more readable (on the contrary I
think...) so the props drilling is useless. | 
| | 
| 
| 
| 
| 
| | The component should only be responsible of the layout for the logo,
the name and the optional baseline. Also, the homepage url could
be different from `/` so the consumer should give the right url. | 
| | 
| 
| 
| 
| | * replace `link` prop with `anchor` prop
* add a `label` prop to let consumer handle the accessible name | 
| | 
| 
| 
| 
| 
| 
| | * Column is a simple div meant to be used inside Columns component so
they should live together.
* NoScript is only used in Layout component and its name does not
make sense since it needs to be used inside a `noscript` element. | 
| | 
| 
| 
| 
| 
| | Using paths aliases starting with "@" can be confusing and can lead to
conflict with existings modules. I prefer to use relative paths to
avoid extra configuration in tools because of these aliases. | 
| | 
| 
| 
| 
| | It prevents to rerender the common components between pages (header,
footer...). | 
| | |  | 
| | |  | 
| | |  | 
|  | It defines the different components used by all other layouts. |