Extract AOE specific texts as messages.json

This commit is contained in:
dennis.ludwig
2021-07-01 13:36:10 +02:00
parent ab72666052
commit 72861c0066
9 changed files with 292 additions and 227 deletions

View File

@@ -22,14 +22,22 @@ const Footer: React.FC<Props> = ({ items, pageName }) => {
!isMobileViewport() && getItemPageNames(items).includes(pageName),
})}
>
<Branding
modifier="footer"
logoContent={
<img src={assetUrl("logo.svg")} width="150px" height="60px" alt="" />
}
>
<span className="footnote">{footerFootnote}</span>
</Branding>
{footerFootnote && (
<Branding
modifier="footer"
logoContent={
<img
src={assetUrl("logo.svg")}
width="150px"
height="60px"
alt=""
/>
}
>
<span className="footnote">{footerFootnote}</span>
</Branding>
)}
<FooterEnd />
</div>
);