Skip to content

Commit

Permalink
showing 6 blog post cards
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsingal committed Mar 21, 2024
1 parent ee8a7dc commit 0552116
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion marketing/src/containers/blog-posts/component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const BlogPosts: FC = () => {
const [slide, setSlide] = useState(1);
const { data, isFetched } = usePosts();

const posts = data?.items?.slice(0, 4); // Taking the first 4 posts
const posts = data?.items?.slice(0, 6); // Taking the first 4 posts

return (
<section className="relative py-12 bg-blue-600 border-t border-white/10 md:py-32">
Expand Down

0 comments on commit 0552116

Please sign in to comment.