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

35 lines
843 B
Plaintext

@page "/portfolio"
@using BlazorWASM.Shared
@using SharedUI.Shared.Components.Layout
<TitlePlusImageRightComponent titlePlusImageModel="@contentModel2" />
<ThreeColumnComponent/>
<ProjectsComponent />
<SlidersComponent/>
<FaQComponent />
@code {
public TitlePlusImageModel contentModel2 = new TitlePlusImageModel("Bublicím", ContentModel2Description2, "https://images.unsplash.com/photo-1540331547168-8b63109225b7?q=80&w=2038&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", "#")
};
}