//Home View Index Page
        public IActionResult Index()
        {
            var model = new HomeViewModel
            {
                AboutUs       = _homeRepository.GetAboutUs(),
                Categories    = _homeRepository.GetCategories(),
                Settings      = _homeRepository.GetSettings(),
                LikeableAreas = _homeRepository.GetLikeableAreas()
            };

            return(View(model));
        }