Skip to content

Commit

Permalink
fix: Updates heading levels for blog index (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcell authored Feb 18, 2022
1 parent bf1976e commit e24bf54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function Index({ posts, globalData }) {
{post.data.date}
</p>
)}
<h3 className="text-2xl md:text-3xl">{post.data.title}</h3>
<h2 className="text-2xl md:text-3xl">{post.data.title}</h2>
{post.data.description && (
<p className="mt-3 text-lg opacity-60">
{post.data.description}
Expand Down

0 comments on commit e24bf54

Please sign in to comment.