import CategoryItemCard from "@/Components/CategoryItemCard" export default function CategoryCard({ category }){ return (
{category.title} {category.products.length } محصول {category.description}
{category.products[0] ? : null}
) }