aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/layout/index.ts
Commit message (Collapse)AuthorAgeFilesLines
* refactor(components): rewrite Notice componentArmand Philippot2023-11-111-1/+0
| | | | * Rename message prop to children prop and set ReactNode as type
* refactor(components): remove Column and NoScript from atomsArmand Philippot2023-11-111-2/+0
| | | | | | | * 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-1/+5
| | | | | Some components have been renamed to be able to create Footer, Header and Nav.
* refactor: use named export for everything except pagesArmand Philippot2023-09-201-0/+7
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.