For such a simply action why not simply use:
@inject NavigationManager Nav
<span class="fa fa-fighter-jet" @onclick=@(()=> Nav.NavigateTo("carMoved", 1))></span>
So use the injected NavigationManger object method directly instead of cluttering you code with doing the exact same thing.