Skip to content

Commit

Permalink
Replace h1 tags with h2
Browse files Browse the repository at this point in the history
  • Loading branch information
kamranahmedse committed Apr 12, 2024
1 parent c2a5e5a commit e716007
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/FeaturedGuides.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const { heading, guides } = Astro.props;
---

<div class='container'>
<h1 class='text-2xl sm:text-3xl font-bold block'>{heading}</h1>
<h2 class='text-2xl sm:text-3xl font-bold block'>{heading}</h2>

<div class='mt-3 sm:my-5'>
{guides.map((guide) => <GuideListItem guide={guide} />)}
Expand Down
2 changes: 1 addition & 1 deletion src/components/FeaturedVideos.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const { heading, videos } = Astro.props;
---

<div class='container'>
<h1 class='text-2xl sm:text-3xl font-bold block'>{heading}</h1>
<h2 class='text-2xl sm:text-3xl font-bold block'>{heading}</h2>

<div class='mt-3 sm:my-5'>
{videos.map((video) => <VideoListItem video={video} />)}
Expand Down

0 comments on commit e716007

Please sign in to comment.