Make Home link description translateable

This commit is contained in:
David Baker 2022-11-07 12:33:06 +00:00
commit e5feba8c26
2 changed files with 5 additions and 1 deletions

View file

@ -88,11 +88,13 @@ interface HeaderLogoProps {
}
export function HeaderLogo({ className }: HeaderLogoProps) {
const { t } = useTranslation();
return (
<Link
className={classNames(styles.headerLogo, className)}
to="/"
aria-label="Element Call Home"
aria-label={t("Element Call Home")}
>
<Logo />
</Link>