aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/site-footer.tsx
Commit message (Collapse)AuthorAgeFilesLines
* refactor(components): remove SiteHeader and SiteFooter componentsArmand Philippot2023-11-111-78/+0
| | | | | They do not help to make the layout more readable (on the contrary I think...) so the props drilling is useless.
* feat(components): add a Colophon componentArmand Philippot2023-11-111-26/+8
|
* refactor(components): rewrite Copyright componentArmand Philippot2023-11-111-7/+11
| | | | | | | | | * remove `icon` prop (it is confusing because a copyright should have the copyright symbol, the license is not part of the copyright) * reorganize copyright informations I also updated the CC BY SA icon because the elements was in the wrong order.
* refactor(components): rewrite NavList componentArmand Philippot2023-11-111-9/+16
| | | | | | | * extract NavItem from NavList * remove `kind` and `listClassName` props (since the consumer has control over NavList, NavItem and NavLink components these props are obsolete)
* refactor(components): rewrite BackToTop componentArmand Philippot2023-11-111-1/+11
| | | | | * replace `link` prop with `anchor` prop * add a `label` prop to let consumer handle the accessible name
* refactor(components): remove Column and NoScript from atomsArmand Philippot2023-11-111-1/+1
| | | | | | | * 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.
* feat(components): add Article, Aside, Footer, Header, Main & NavArmand Philippot2023-10-241-0/+75
Some components have been renamed to be able to create Footer, Header and Nav.