Skip to content

Commit

Permalink
🐛 Added missing 'li'-tag for list-item in blogglist
Browse files Browse the repository at this point in the history
  • Loading branch information
KenAJoh committed Jan 20, 2025
1 parent b528065 commit 54e03db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const BloggList = ({
}) => {
const date = useFormatedDate(blogg?.publishedAt ?? blogg._createdAt);
return (
<div>
<li>
<div className="hidden gap-6 md:flex">
<div className="relative hidden aspect-square h-[11.75rem] rounded-lg ring-1 ring-border-subtle lg:block">
{blogg?.seo?.image ? (
Expand Down Expand Up @@ -86,6 +86,6 @@ export const BloggList = ({
</BodyShort>
)}
</div>
</div>
</li>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const HighlightedBlogg = ({
}) => {
const date = useFormatedDate(blogg?.publishedAt ?? blogg._createdAt);
return (
<div>
<article>
<div className="col-span-1 hidden md:block">
<div className="relative mb-10 block aspect-video rounded-lg ring-1 ring-border-subtle">
{blogg?.seo?.image ? (
Expand Down Expand Up @@ -109,6 +109,6 @@ export const HighlightedBlogg = ({
</BodyShort>
)}
</div>
</div>
</article>
);
};

0 comments on commit 54e03db

Please sign in to comment.