Skip to content

Commit

Permalink
avoid non-sequential h tags
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-Walker-GM committed Jun 19, 2024
1 parent ee093a7 commit 695349d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/components/BlogCard/BlogCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ interface BlogCardProps {
const BlogCard = ({ post }: BlogCardProps) => {
return (
<article className="rounded-[4px] border-1 border-maiTai p-7 pb-5">
<h4 className="mb-2 text-sm font-bold uppercase text-maiTai">
<p className="mb-2 text-sm font-bold uppercase text-maiTai">
{prettifyDate(post.publishedAt)}
</h4>
</p>
<Link
to={routes.blogIndividual({ slug: post.slug })}
className="text-white hover:text-sulu"
Expand Down

0 comments on commit 695349d

Please sign in to comment.