How to make custom collection template content unique to the specific collection

Hi Support!

Is it possible to have a custom collection template Section and Block have unique data?

I created a video outlining the current behavior.

https://www.loom.com/share/72d3608740fe4efda35cf3beb3ff5553

My current Code for my custom collection template.

{{ page.title }}

{{ page.content }} {% section 'icons-with-text' %}

My Code for my Custom Section plus blocks

{{section.settings.heading}}

{{section.settings.description}}

{%for block in section.blocks %} {% endfor %}

{% schema %}
{
“name”: “icons with text above”,
“settings”: [
{
“type”: “text”,
“label”: “your headline for the section”,
“id”: “heading”
},{
“type”: “richtext”,
“label”: “your description”,
“id”: “description”
}
],
“blocks”: [
{
“type”: “image”,
“name”: “image block”,
“settings”: [
{
“type”: “image_picker”,
“label”: “your image”,
“id”: “image”
}
]
}
],
“presets”: [
{
“category”:“image”,
“name”: “icons with text”
}
]
}
{% endschema %}