Hoe voeg ik unieke tekst toe onder elke categorieafbeelding?

Hi Pushpender!

It could be achieved with SCSS:

$categories: 13 12;
$labels: "first label" "second label";

@each $category, $label in zip($categories, $labels) {
  .category-title-link[href$="/#{$category}"] .category-logo.aspect-image:after {
    display: block;
    content: $label;
  }
}

Please try this code and tell me if it does what you want.
I suggest using IDs to identify categories, as their slug can change. IDs, however, will always stay the same.
You can add comments in your CSS to write down which category ID is related to which category name.