28 lines
1.4 KiB
Plaintext
28 lines
1.4 KiB
Plaintext
@page "/softwaredevelopment"
|
|
|
|
@using BlazorWASM.Shared
|
|
@using SharedUI.Shared.Components.Layout
|
|
|
|
|
|
|
|
<TitlePlusImageLeftComponent titlePlusImageModel="@contentModel1"></TitlePlusImageLeftComponent>
|
|
@code {
|
|
public TitlePlusImageModel contentModel1 = new TitlePlusImageModel("Software Development", ContentModel1Description, "https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8c29mdHdhcmUlMjBkZXZlbG9wbWVudHxlbnwwfHwwfHx8MA%3D%3D", CButtons);
|
|
|
|
public static List<DescriptionContent> ContentModel1Description = new List<DescriptionContent>
|
|
{
|
|
new DescriptionContent("Create robust software solutions that streamline your operations and enhance your business performance. From custom software development to software integration and maintenance, our team leverages the latest technologies to deliver scalable and reliable solutions tailored to your specific requirements. Whether you need a web-based application, a mobile app, or enterprise software, we have the expertise to turn your ideas into reality. Our focus is on delivering software that not only meets your current needs but also adapts to future challenges, ensuring long-term success for your business."),
|
|
|
|
};
|
|
|
|
|
|
public static List<ContentButton> CButtons = new List<ContentButton>
|
|
{
|
|
new ContentButton("Submit", "#"),
|
|
new ContentButton("Cancel", "#")
|
|
};
|
|
|
|
|
|
}
|
|
|