How to get links to work in MVC (Routes and MVC)

Hope someone can help!

Any advice to get the links to work in MVC?

e.g
var routes = [
{ path: '/', url: './index.cshtml' },
{ path: '/Feed/', url: './Views/Home/Feed.cshtml' },

Links are as follows

<a href="@Url.Action("Index", "Home")" class="link icon-only"> <i class="icon icon-back"></i> </a>

On page itself -

<div data-name="home" class="page">

Links don’t work and it just stays on the page.

Thank you!