28 lines
755 B
Plaintext
28 lines
755 B
Plaintext
@page "/prices"
|
|
@using BlazorWASM.Shared
|
|
@using SharedUI.Shared.Components.Layout
|
|
|
|
|
|
|
|
|
|
<TitlePlusImageRightComponent titlePlusImageModel="@contentModel2" />
|
|
|
|
|
|
@code {
|
|
public TitlePlusImageModel contentModel2 = new TitlePlusImageModel("Bublicím", ContentModel2Description2, "https://images.unsplash.com/photo-1520531158340-44015069e78e?q=80&w=1944&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", CButtons2);
|
|
|
|
public static List<DescriptionContent> ContentModel2Description2 = new List<DescriptionContent>
|
|
{
|
|
new DescriptionContent("fghhfdhfd")
|
|
|
|
};
|
|
|
|
|
|
public static List<ContentButton> CButtons2 = new List<ContentButton>
|
|
{
|
|
new ContentButton("bubli", "#")
|
|
};
|
|
|
|
}
|
|
}
|