aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/grid/grid.module.scss
Commit message (Collapse)AuthorAgeFilesLines
* refactor(pages): improve HomepageArmand Philippot2023-11-291-0/+12
| | | | | | | | | * move custom homepage components that does not require props to the MDX file (links should not need to be translated here but where they are defined) * move SEO title and meta desc to MDX file * make Page component the wrapper instead of using a React fragment * fix MDX module types
* refactor(components): replace items prop in Grid with children propArmand Philippot2023-11-221-9/+0
| | | | | | | | | It is easier to read and to maintain this way. The `items` prop was not useful since we are not manipulating the items. Changes: * extract GridItem component from Grid component * replace `items` prop of type Array<ReactNode> with `children` prop of type ReactNode * remove GridItem styles
* feat(components): add a generic Grid componentArmand Philippot2023-11-111-0/+41
* merge Columns, Gallery and CardsList into Grid component * add more options to control the grid