MangoWeb/SharedUI/Shared/Components/Pages/Services.razor

28 lines
711 B
Plaintext

@page "/services"
@using BlazorWASM.Shared
@using BlazorWASM.Shared.Data
@using SharedUI.Shared.Components.Layout
<TitlePlusImageRightComponent titlePlusImageModel="@contentModel2"/>
<ServicesCardListComponent cards="@ServicesCardContent"/>
@code {
public TitlePlusImageModel contentModel2;
public ServicesCard ServicesCardContent;
protected override void OnInitialized()
{
contentModel2 = new TitlePlusImageModel("Web Fejlesztés", ContentDataSet.ContentModel2Description2, "https://images.unsplash.com/photo-1583339522870-0d9f28cef33f?crop=entropy&amp", ContentDataSet.CButtons2);
ServicesCardContent = new ServicesCard("Title", "Welcome to services", ContentDataSet.CardsList);
}
}