From d75b9a1e150ab211c1052fb49bede9bd16320aca Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Sat, 7 Oct 2023 18:44:14 +0200 Subject: feat(components): add a generic Flip component The flipping animation is used at several places so it makes sense to use a single component to handle the animation. It will avoid styles duplication. --- src/components/templates/layout/layout.tsx | 31 +++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) (limited to 'src/components/templates/layout/layout.tsx') diff --git a/src/components/templates/layout/layout.tsx b/src/components/templates/layout/layout.tsx index 444b170..3e1eb63 100644 --- a/src/components/templates/layout/layout.tsx +++ b/src/components/templates/layout/layout.tsx @@ -1,4 +1,5 @@ /* eslint-disable max-statements */ +import NextImage from 'next/image'; import Script from 'next/script'; import { type FC, @@ -16,7 +17,7 @@ import { useScrollPosition, useSettings, } from '../../../utils/hooks'; -import { ButtonLink, Icon, Main } from '../../atoms'; +import { ButtonLink, Icon, Logo, Main } from '../../atoms'; import { SiteFooter, type SiteFooterProps, @@ -112,6 +113,22 @@ export const Layout: FC = ({ description: 'Layout: main nav - contact link', id: 'AE4kCD', }); + const photoAltText = intl.formatMessage( + { + defaultMessage: '{website} picture', + description: 'Layout: photo alternative text', + id: '8jjY1X', + }, + { website: name } + ); + const logoTitle = intl.formatMessage( + { + defaultMessage: '{website} logo', + description: 'Layout: logo title', + id: '52H2HA', + }, + { website: name } + ); const mainNav: SiteHeaderProps['nav'] = [ { @@ -240,11 +257,19 @@ export const Layout: FC = ({ baseline={baseline} className={styles.header} isHome={isHome} + logo={} // eslint-disable-next-line react/jsx-no-literals -- Storage key allowed motionStorageKey="reduced-motion" nav={mainNav} - // eslint-disable-next-line react/jsx-no-literals -- Photo allowed - photo="/armand-philippot.jpg" + photo={ + + } searchPage={ROUTES.SEARCH} title={name} withLink={true} -- cgit v1.2.3