This commit is contained in:
hamid zarghami
2025-04-17 11:11:44 +03:30
parent 1c314972da
commit 01470f14d6
14 changed files with 67 additions and 44 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ const HeroSection: FC = () => {
<div className='flex xl:flex-row flex-col gap-8 mt-10'>
{
data?.data?.mostVisitedBlogs?.map((item, index: number) => {
if (index !== 0) {
if (index !== 0 && index < 4) {
return (
<BlogItem key={item.id} item={item} />
)