Skip to content

Commit

Permalink
fixed link (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
bugswritter authored Jul 18, 2024
1 parent 6b29961 commit 590cc70
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/pages/blog2/sections/BlogUMightLike.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ function BlogUMightLike({ blog, block }) {
});
return (
<Link
to={`/blogs2/${blog.title_slug}`}
to={`/blogs/${blog.title_slug}`}
className={`${
block ? "block" : "hidden"
} flex flex-col min-w-full snap-center`}
>
<LazyLoadImage
<LazyLoadImage
src={blog.image}
alt={blog.title}
className="h-48 w-full object-cover aspect-video rounded-lg"
Expand All @@ -38,7 +38,7 @@ function BlogUMightLike({ blog, block }) {
</p>

<div className="flex items-center gap-3 mt-5 md:my-3">
<LazyLoadImage
<LazyLoadImage
src={logo}
alt="ellipse"
className="w-10 h-10 object-cover rounded-full flex items-center justify-center"
Expand Down
2 changes: 1 addition & 1 deletion src/pages/blog2/sections/RelatedBlogCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function RelatedBlogCard({ blog }) {
return (
<Link
className="flex flex-row items-center gap-2 w-64"
to={`/blogs2/${blog.title_slug}`}
to={`/blogs/${blog.title_slug}`}
>
<LazyLoadImage
src={`https://apis.spaceyatech.com${blog.image}`}
Expand Down

0 comments on commit 590cc70

Please sign in to comment.