aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/nav/index.ts
Commit message (Collapse)AuthorAgeFilesLines
* refactor(components): rewrite Breadcrumbs componentArmand Philippot2023-11-111-1/+0
|
* refactor(components): rewrite Pagination componentArmand Philippot2023-11-111-1/+0
|
* refactor(components): rewrite NavList componentArmand Philippot2023-11-111-0/+1
| | | | | | | * 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 Link componentArmand Philippot2023-11-111-0/+1
| | | | | | | | | * rename `external` prop to `isExternal` * rename `download` prop to `isDownload` * rewrite CSS to reduce code length and complexity * move link styles in Sass placeholders to avoid repeats because of WordPress articles * move NavLink component to molecules
* feat(components): add Article, Aside, Footer, Header, Main & NavArmand Philippot2023-10-241-1/+1
| | | | | 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/+3
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.