aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/templates/layout/site-header/site-branding.tsx
Commit message (Collapse)AuthorAgeFilesLines
* fix(branding): do not reanimate branding on route changeArmand Philippot2023-12-161-1/+10
| | | | | | | The branding animation should occurs only once. Since we're changing the heading from a h1 to a p and vice-versa, the CSS animation was retriggered. By using a ref to make sure it is the first render, we can prevent this behaviour.
* refactor(components): split Layout component in smaller componentsArmand Philippot2023-11-221-0/+91
The previous component was too long and hardly readable. So I splitted it in different part and added tests.