Ability to Add Links to Containers

The way to do this at this moment:
Use wix-location module

so import it first at the beginning of codessssssssssss

import wixLocation from 'wix-location';

then tell the code that you want to redirect user after a click.

$w('#container').onClick(()=>{
wixLocation.to('/shop')
})