|
|
|
@ -110,6 +110,7 @@ function Video({ |
|
|
|
|
tabs={[ |
|
|
|
|
{ |
|
|
|
|
title: "سر فصل ها", |
|
|
|
|
shown: true, |
|
|
|
|
components: ( |
|
|
|
|
<div className="flex flex-col w-full mt-5 gap-5"> |
|
|
|
|
{seasons |
|
|
|
@ -122,16 +123,22 @@ function Video({ |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: "مشخصات", |
|
|
|
|
shown: book?.product.filter( |
|
|
|
|
(product) => product?.productType === 4 |
|
|
|
|
)?.properties?.length, |
|
|
|
|
components: ( |
|
|
|
|
<Table |
|
|
|
|
specifications={ |
|
|
|
|
book?.product[2]?.properties.length > 0 || [] |
|
|
|
|
book?.product.filter( |
|
|
|
|
(product) => product?.productType === 4 |
|
|
|
|
)?.properties |
|
|
|
|
} |
|
|
|
|
/> |
|
|
|
|
), |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: "نقد و بررسی", |
|
|
|
|
shown: true, |
|
|
|
|
components: ( |
|
|
|
|
<div className="bg-gray-100 rounded-md mt-4 w-full flex justify-center items-center h-40 text-green4F text-tiny"> |
|
|
|
|
این بخش فعلا قابل دسترسی نیست. |
|
|
|
@ -140,6 +147,7 @@ function Video({ |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: "پرسش و پاسخ", |
|
|
|
|
shown: true, |
|
|
|
|
components: ( |
|
|
|
|
<div className="bg-gray-100 rounded-md mt-4 w-full flex justify-center items-center h-40 text-green4F text-tiny"> |
|
|
|
|
این بخش فعلا قابل دسترسی نیست. |
|
|
|
|