Skip to content

Commit

Permalink
proper tag for footer title
Browse files Browse the repository at this point in the history
  • Loading branch information
ZibanPirate committed Sep 19, 2024
1 parent 69b4d80 commit e5f9486
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ export function Footer({ sections }: FooterProps): JSX.Element {
<div className="footer m-auto max-w-7xl p-10">
{sections.map(({ localeKey, links }, sectionIndex) => (
<nav key={`section-${sectionIndex}`}>
<h6 className="footer-title">
<span className="footer-title">
<Locale localeKey={localeKey} />
</h6>
</span>
{links.map(({ localeKey, href }, linkIndex) => (
<Link key={`link-${linkIndex}`} className="link-hover link" href={href}>
<Locale localeKey={localeKey} />
Expand Down

0 comments on commit e5f9486

Please sign in to comment.