summaryrefslogtreecommitdiff
path: root/src/lib/home/components/CategoryDynamicMobile.jsx
diff options
context:
space:
mode:
authorIT Fixcomart <it@fixcomart.co.id>2024-09-25 01:53:07 +0000
committerIT Fixcomart <it@fixcomart.co.id>2024-09-25 01:53:07 +0000
commitad952b397b1cebcf85b66877da8e949e7e7a891f (patch)
treec174d9dabd75a97544884f47b513f5b4b58443a0 /src/lib/home/components/CategoryDynamicMobile.jsx
parent1e834e45f9a11911036496151b71f99de480862e (diff)
parenta66b690ad0445452816f3ac8f8e98dba2e53ca31 (diff)
Merged in perapihan-tag (pull request #331)
Perapihan tag Approved-by: trisusilo
Diffstat (limited to 'src/lib/home/components/CategoryDynamicMobile.jsx')
-rw-r--r--src/lib/home/components/CategoryDynamicMobile.jsx14
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>