Skip to content

Commit

Permalink
[EPMGCIPCNT-34] - changed div to section
Browse files Browse the repository at this point in the history
  • Loading branch information
souljja committed Feb 26, 2024
1 parent e94aa70 commit 08dc542
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/hero/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface HeroProps {
}

export const Hero = ({ title, body, bannerSource, variant }: HeroProps) => (
<div className="hero">
<section className="hero">
<HeroArticle title={title} body={body} variant={variant} />
<div className="hero-banner">
<img
Expand All @@ -22,5 +22,5 @@ export const Hero = ({ title, body, bannerSource, variant }: HeroProps) => (
role="presentation"
/>
</div>
</div>
</section>
);

0 comments on commit 08dc542

Please sign in to comment.