How can I make multicolumn images clickable on my homepage?

on my home page I have three column Multicolumn. They are just large photos and want them to each be clickable and take you somewhere different, no buttons or text

website : DAGNORAK.myshopify.com

ive loaded three photos on the website to test This

any help is appreciated

dawn 8.0

  1. In the theme editor, navigate to the file that controls the homepage or the section containing the multicolumn section. This could be “index.liquid” or a custom section file.
  2. Locate the code that generates the multicolumn section. It might look something like:
{% for image in section.settings.images %}
  
    
      
    
  

{% endfor %}
​
  1. Within the for loop, you can see that each image is wrapped inside an <a> tag with the href attribute set to {{ image.link }}. This image.link should be the variable that contains the URL you want to redirect to for each image.
  2. Update the {{ image.link }} with the actual URLs you want each photo to redirect to. For example: