try to rename your action to Index

[Route("~/home/index")]
 public IActionResult Index()
        {
            var product = new Products() {

                ProductName = "name",
                Quantity = 5
            };
            return View(product);
        }