fix(BOOK-476): Footer headings are now h2 instead of h3
Approved-by: Matilda Landström
This commit is contained in:
@@ -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}>
|
||||
|
||||
Reference in New Issue
Block a user