diff --git a/src/app/home/components/Banners3.tsx b/src/app/home/components/Banners3.tsx
index c13d2a7..5f06c6d 100644
--- a/src/app/home/components/Banners3.tsx
+++ b/src/app/home/components/Banners3.tsx
@@ -11,7 +11,7 @@ const Banners3: FC = () => {
const sortedBanners = data?.results?.banners?.sort((a, b) => a.order - b.order) || []
return (
-
+
diff --git a/src/app/home/components/Banners4.tsx b/src/app/home/components/Banners4.tsx
index bf6ec95..4f4597c 100644
--- a/src/app/home/components/Banners4.tsx
+++ b/src/app/home/components/Banners4.tsx
@@ -11,27 +11,27 @@ const Banners4: FC = () => {
return (
-
+
-
-
+
+
-
-
+
diff --git a/src/app/home/components/Blogs.tsx b/src/app/home/components/Blogs.tsx
index c13ac27..c66359c 100644
--- a/src/app/home/components/Blogs.tsx
+++ b/src/app/home/components/Blogs.tsx
@@ -13,8 +13,8 @@ const Blogs: FC = () => {
return (
رسانه و مطالب
-
- برای مشاهده ی آخرین مطالب رسانه و مطالب
اینجا کلیک کنید
+
+ برای مشاهده ی آخرین مطالب رسانه و مطالب اینجا کلیک کنید
خطا در بارگذاری مطالب
@@ -27,9 +27,9 @@ const Blogs: FC = () => {
return (
-
رسانه و مطالب
-
- برای مشاهده ی آخرین مطالب رسانه و مطالب
اینجا کلیک کنید
+
رسانه و مطالب
+
+ برای مشاهده ی آخرین مطالب رسانه و مطالب اینجا کلیک کنید
diff --git a/src/app/home/components/Categories.tsx b/src/app/home/components/Categories.tsx
index 03551e0..6bd1233 100644
--- a/src/app/home/components/Categories.tsx
+++ b/src/app/home/components/Categories.tsx
@@ -24,7 +24,7 @@ const Categories = () => {
>
{parentCategories?.map((item: Category) => (
-
+
))}
diff --git a/src/app/home/components/CategoryItem.tsx b/src/app/home/components/CategoryItem.tsx
index 2d8ee08..8c75e28 100644
--- a/src/app/home/components/CategoryItem.tsx
+++ b/src/app/home/components/CategoryItem.tsx
@@ -1,21 +1,23 @@
import Image from 'next/image';
+import Link from 'next/link';
import React, { FC } from 'react'
type Props = {
image: string;
title: string;
+ categoryUrl: string;
}
const CategoryItem: FC = (props) => {
return (
-
+
)
}