@using MissnationBlazorWASM.Shared
    @{ foreach (var SliderItem in Sliders) {
  • @SliderItem.Title

    @SliderItem.Description

  • } }
@code { List Sliders = new List { new SliderItem("Natural Beauty", "We believe that natural Beauty is a value of great importance.", "_content/MissNationSharedUI/assets/img/04.jpg"), new SliderItem("#stayU", "Miss Nation's mission is to integrate the message of #stayU campaign in the education systems of all nations.", "_content/MissNationSharedUI/assets/img/05.jpg"), new SliderItem("Natural", "The campaign adresses young girls to avoid comparing themselves with others, and to stop using plastic surgery to alter their appearance.", "_content/MissNationSharedUI/assets/img/06.jpg") }; protected override void OnInitialized() { base.OnInitialized(); } }