diff options
Diffstat (limited to 'src/lib/home/components/CategoryDynamicMobile.jsx')
| -rw-r--r-- | src/lib/home/components/CategoryDynamicMobile.jsx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/home/components/CategoryDynamicMobile.jsx b/src/lib/home/components/CategoryDynamicMobile.jsx index af151df2..4a8f13cf 100644 --- a/src/lib/home/components/CategoryDynamicMobile.jsx +++ b/src/lib/home/components/CategoryDynamicMobile.jsx @@ -59,9 +59,9 @@ const CategoryDynamicMobile = () => { categoryManagement?.map((category) => ( <div key={category.id}> <div className='bagian-judul flex flex-row justify-between items-center gap-3 mb-4 mt-4'> - <div className='font-semibold sm:text-h-sm mr-2'> - {category?.name} - </div> + <h1 className='font-semibold text-[14px] sm:text-h-lg mr-2'> + {category.name} + </h1> <Link href={createSlug( '/shop/category/', @@ -98,9 +98,9 @@ const CategoryDynamicMobile = () => { className='' /> <div className='bagian-judul flex flex-col justify-center items-start gap-1 ml-2'> - <div className='font-semibold text-[10px] line-clamp-1'> + <h2 className='font-semibold text-[10px] line-clamp-1'> {index?.name} - </div> + </h2> </div> </div> </div> @@ -131,9 +131,9 @@ const CategoryDynamicMobile = () => { className='p-2' /> <div className='bagian-judul flex flex-col justify-center items-start gap-1 break-words line-clamp-2 group-hover:text-red-500'> - <div className='font-semibold line-clamp-2 group-hover:text-red-500 text-[10px]'> + <h3 className='font-semibold line-clamp-2 group-hover:text-red-500 text-[10px]'> {x?.name} - </div> + </h3> </div> </Link> </div> |
