Skip to content

Commit

Permalink
Merge pull request #1259 from hackforla/1230-header-footer-A11y
Browse files Browse the repository at this point in the history
1230 Make Header/Footer Logo Accessible
  • Loading branch information
sydneywalcoff authored Mar 17, 2024
2 parents ed5654a + ad85274 commit 1b894c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions products/statement-generator/src/components/Logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function TextLogo({ theme, footer }: ILogoComponent) {
}

return (
<Link to="/" className={classes.logoLink}>
<Link to="/" className={classes.logoLink} aria-label="Expunge Assist home">
<span>Expunge</span>
<span>Assist</span>
</Link>
Expand All @@ -75,7 +75,7 @@ export default function Logo({ theme, footer }: ILogoComponent) {

return (
<div className={classes.logoContainer}>
<Link to="/">
<Link to="/" aria-label="Expunge Assist home">
<img src={logoIcon} alt="" />
</Link>

Expand Down

0 comments on commit 1b894c0

Please sign in to comment.