aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/widgets/index.ts
Commit message (Collapse)AuthorAgeFilesLines
* refactor(components): replace LinksListWidget with LinksWidgetArmand Philippot2023-11-141-1/+1
| | | | | | | * avoid List component repeat * rewrite tests and CSS * add an id to LinksWidgetItemData (previously LinksListItems) type because the label could be duplicated
* refactor(components): replace Sharing with SharingWidget componentArmand Philippot2023-11-141-1/+1
| | | | | | | * all the widgets should have a coherent name * fix mailto uri * remove useless CSS * add tests
* refactor(components): replace SocialMedia with SocialMediaWidgetArmand Philippot2023-11-131-1/+1
| | | | | | * the goal is to make the name of the widgets coherent * remove useless CSS * replace Media type with SocialMediaData
* refactor: use named export for everything except pagesArmand Philippot2023-09-201-0/+5
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.