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}>
|
<div className={styles.secondaryNavigation}>
|
||||||
<nav className={styles.secondaryNavigationGroup}>
|
<nav className={styles.secondaryNavigationGroup}>
|
||||||
<Typography variant="Title/Overline/sm">
|
<Typography variant="Title/Overline/sm">
|
||||||
<h3>{appDownloads.title}</h3>
|
<h2>{appDownloads.title}</h2>
|
||||||
</Typography>
|
</Typography>
|
||||||
{appDownloads.links.length ? (
|
{appDownloads.links.length ? (
|
||||||
<ul className={styles.secondaryNavigationList}>
|
<ul className={styles.secondaryNavigationList}>
|
||||||
@@ -60,7 +60,7 @@ export default function FooterSecondaryNav({
|
|||||||
{secondaryLinks.map((group) => (
|
{secondaryLinks.map((group) => (
|
||||||
<nav className={styles.secondaryNavigationGroup} key={group.title}>
|
<nav className={styles.secondaryNavigationGroup} key={group.title}>
|
||||||
<Typography variant="Title/Overline/sm">
|
<Typography variant="Title/Overline/sm">
|
||||||
<h3>{group.title}</h3>
|
<h2>{group.title}</h2>
|
||||||
</Typography>
|
</Typography>
|
||||||
{group.links.length ? (
|
{group.links.length ? (
|
||||||
<ul className={styles.secondaryNavigationList}>
|
<ul className={styles.secondaryNavigationList}>
|
||||||
|
|||||||
Reference in New Issue
Block a user