diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-07-03 08:34:16 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-07-03 08:34:16 +0700 |
| commit | 6c79d14a11c8dba20778c0559230a406cd147cc7 (patch) | |
| tree | 8f502876be081f4de3d420804d95e8a3cb67ada8 /src/lib/home | |
| parent | 6b173eaf8a95432316822b1d41b084875adfbd83 (diff) | |
<iman> update category management
Diffstat (limited to 'src/lib/home')
| -rw-r--r-- | src/lib/home/components/CategoryPilihan.jsx | 38 |
1 files changed, 24 insertions, 14 deletions
diff --git a/src/lib/home/components/CategoryPilihan.jsx b/src/lib/home/components/CategoryPilihan.jsx index c506ef29..3f1066e2 100644 --- a/src/lib/home/components/CategoryPilihan.jsx +++ b/src/lib/home/components/CategoryPilihan.jsx @@ -1,30 +1,40 @@ import Image from 'next/image' import useCategoryHome from '../hooks/useCategoryHome' +import Link from '@/core/components/elements/Link/Link' +import { createSlug } from '@/core/utils/slug' const CategoryPilihan = ({ id, categories }) => { const { categoryHome } = useCategoryHome({ id }) - + console.log("id",id) + console.log("categories",categories) return ( <section> - <div className='flex flex-row items-center gap-4'> - <h1>Kategori Pilihan</h1> - <p className='text-gray_r-10'>total produk</p> + <div className='flex flex-row items-center mb-4'> + <div className='font-semibold sm:text-h-lg mr-2'>Kategori Pilihan</div> + <p className='text-gray_r-10 text-sm'>200 Rb+ Produk Unggulan & 800+ Brand Rekomendasi tersedia!</p> </div> - <div className="group/item grid grid-cols-6 gap-2 w-full h-full col-span-2 border"> + <div className="group/item grid grid-cols-6 gap-y-2 w-full h-full col-span-2 "> {categories.map((category) => ( - <div className="max-w-sm w-full gap-4 lg:max-w-full flex flex-col bg-white px-4 py-2 border-2 border-gray_r-8 rounded-lg"> - <div className="group/edit flex items-center justify-center group-hover/item:visible"> - <Image src='group-hover/ https://erp.indoteknik.com/api/image/product.template/image_256/544371?ratio=square' width={80} height={80} alt={category?.name} /> - <a class="group/edit invisible hover:bg-slate-200 group-hover/item:visible ..." href="tel:{person.phone}"> - <span class="group-hover/edit:text-gray-700 ...">Call</span> - </a> + <div className="KartuInti h-48 w-60 max-w-sm lg:max-w-full flex flex-col border-[1px] border-gray-200 relative group"> + <div className='KartuB absolute h-48 w-60 inset-0 flex items-center justify-center '> + <div className="group/edit flex items-center justify-center h-48 w-60 flex-col group-hover/item:visible"> + <div className=' h-36'> + <Image className='group-hover:scale-110 transition-transform duration-300' src='https://erp.indoteknik.com/api/image/product.template/image_256/544371?ratio=square' width={120} height={120} alt={category?.name} /> + </div> + <h2 className="text-gray-700 content-center h-12 border-t-[1px] px-1 w-60 border-gray-200 font-normal text-sm text-center">{category?.name}</h2> + </div> </div> - <div className="flex flex-col justify-center leading-normal items-center"> - <h2 className="text-gray-900 font-bold text-sm items-center text-center">{category?.name}</h2> + <div className='KartuA relative inset-0 flex h-36 w-60 items-center justify-center opacity-0 group-hover:opacity-75 group-hover:bg-[#E20613] transition-opacity '> + <Link + href={createSlug('/shop/category/', category?.name, category?.id)} + className='category-mega-box__parent text-white rounded-lg' + > + Lihat semua + </Link> </div> </div> ))} - </div> + </div> </section> ) } |
