Skip to content

Commit

Permalink
Fix heading level in case study landing page cards
Browse files Browse the repository at this point in the history
  • Loading branch information
delucis committed Jan 24, 2025
1 parent 53fd3b6 commit f3c2c6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/case-studies/_components/CaseStudyCard.astro
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ const image = await resolveCoverImage(post);
</div>

<div class="mt-6 flex flex-col gap-x-16 gap-y-4">
<h3 class="heading-4 md:heading-3" id={post.slug}>
<h2 class="heading-4 md:heading-3" id={post.slug}>
<a
href={`/case-studies/${post.slug}/`}
data-astro-prefetch
class="outline-none after:absolute after:inset-0"
>
{post.data.title}
</a>
</h3>
</h2>
<p class="text-astro-gray-200">{post.data.description}</p>
</div>
</article>

0 comments on commit f3c2c6e

Please sign in to comment.