aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/layout/copyright.tsx
Commit message (Collapse)AuthorAgeFilesLines
* refactor(components): rewrite Copyright componentArmand Philippot2023-11-111-50/+0
| | | | | | | | | * 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.
* feat(components): add a Time componentArmand Philippot2023-11-111-23/+16
| | | | | | Instead of using helpers functions to format the date each time we need to use a time element, it makes more sense to create a new component dedicated to this task.
* 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.
* refactor: use named export for everything except pagesArmand Philippot2023-09-201-3/+1
| | | | | | Next expect a default export for pages so only those components should use default exports. Everything else should use named exports to reduce the number of import statements.
* refactor: support React 18Armand Philippot2022-04-161-2/+2
| | | | | | | | I replaced the deprecated VFC type with FC type and made all children explicits. Formatjs is still not compatible with React 18 so I need to skip type checking when comitting. There are some type errors because of IntlProvider in Storybook stories.
* chore: add a Copyright componentArmand Philippot2022-04-111-0/+59