when having alot of products its common to use pagination to limit the result into pages.
{% paginate collection.products by 25 %}
{% for product in collection.products %}
{% include 'productCard' %}
{% endfor %}
/* render the pagination buttons */
{% for p in paginate.pages %}
...
{% endfor %}
{% endpaginate %}
The pagination uses a page url query parameter like this: /collection/our-versions?page=1