fix(BOOK-476): Footer headings are now h2 instead of h3

Approved-by: Matilda Landström
This commit is contained in:
Erik Tiekstra
2025-11-25 13:29:21 +00:00
parent e84f2f55ac
commit a3e4c85ec0

View File

@@ -27,7 +27,7 @@ export default function FooterSecondaryNav({
<div className={styles.secondaryNavigation}>
<nav className={styles.secondaryNavigationGroup}>
<Typography variant="Title/Overline/sm">
<h3>{appDownloads.title}</h3>
<h2>{appDownloads.title}</h2>
</Typography>
{appDownloads.links.length ? (
<ul className={styles.secondaryNavigationList}>
@@ -60,7 +60,7 @@ export default function FooterSecondaryNav({
{secondaryLinks.map((group) => (
<nav className={styles.secondaryNavigationGroup} key={group.title}>
<Typography variant="Title/Overline/sm">
<h3>{group.title}</h3>
<h2>{group.title}</h2>
</Typography>
{group.links.length ? (
<ul className={styles.secondaryNavigationList}>