The output design does NOT work

Hello. Tell me how to make the output construction work - printable text:

 <div class="inner">
<h2>Производство <br>[[*pagetitle]]: <span class="typewrite" data-period="2000" data-type='[ [[!pdoResources?  &parents=`76`  &tpl=`shop-category-produ`]] ]'></span></h2>
                            <div class="text">[[*introtext]]</div>
                        </div>

in the chunk - &tpl=shop-category-produ- just [[+pagetitle]]
tried it in a chunk " [[+pagetitle]]…"

<div class="inner">
                            <h2>The Best Solution <br>for all <span class="typewrite" data-period="2000" data-type='[ "Industries", "Factories", "Manufact.." ]'></span></h2>
                            <div class="text">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</div>
                        </div>

2023-02-01_020605

If your goal is to place the pagetitles of the queried resources inside your typewrite data-type, I think you need to set an outputSeparator:

<span class="typewrite" data-period="2000" data-type='[

    [[!pdoResources?  
      &parents=`76`
      &tpl=`shop-category-produ`
      &outputSeparator=`,`]] 

]'></span>

Your shop-category-produ tpl should then be:

"[[+pagetitle]]"

Hello. You are absolutely right. Thanks