Skip to content

Commit 6a6cb03

Browse files
committed
replace div with semantic header for the hero-header container
1 parent 47eb015 commit 6a6cb03

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/HeroHeader/HeroHeader.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ export default function HeroHeader() {
2020
if (!screenWidth) return null;
2121

2222
return (
23-
<div id="hero" className="pt-2">
23+
<header id="hero" className="pt-2">
2424
{screenWidth < breakpoint ? <MobileHero /> : <DesktopHero />}
25-
</div>
25+
</header>
2626
);
2727
}

0 commit comments

Comments
 (0)