Direct repeater item to dynamic page

Now I got you.
So at top of the page code, you should write:

import wixLocation from 'wix-location';

Since text47 is inside a repeater, you can’t treat it as a regular item, and instead of your onClick() function, you should use this code:

$w("#repeater1").onItemReady( ($item, itemData, index) => {
 $item("#text47").onClick( (event) => {
 wixLocation.to(itemData["link-mobilestorytimekit-Kit-Info-title"]);
 }); 
})