classify web

This commit is contained in:
Husanjonazamov
2026-02-24 12:52:49 +05:00
commit 64af77101f
310 changed files with 45449 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
import CustomLink from "@/components/Common/CustomLink";
import CustomImage from "@/components/Common/CustomImage";
const PopularCategoryCard = ({ item }) => {
return (
<CustomLink
href={`/ads?category=${item?.slug}`}
className="flex flex-col gap-4"
>
<div className="border p-2.5 rounded-full">
<CustomImage
src={item?.image}
width={96}
height={96}
className="aspect-square w-full rounded-full"
alt="Category"
loading="eager"
/>
</div>
<p className="text-sm sm:text-base line-clamp-2 font-medium text-center leading-tight">
{item?.translated_name}
</p>
</CustomLink>
);
};
export default PopularCategoryCard;