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

31 lines
1.5 KiB
Plaintext

@page "/webdevelopment"
@using BlazorWASM.Shared
@using SharedUI.Shared.Components.Layout
<TitlePlusImageLeftComponent titlePlusImageModel="@contentModel1"></TitlePlusImageLeftComponent>
@code {
public TitlePlusImageModel contentModel1 = new TitlePlusImageModel("Webpage & App Development", ContentModel1Description, "https://images.unsplash.com/photo-1540331547168-8b63109225b7?q=80&w=2038&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", CButtons);
public static List<DescriptionContent> ContentModel1Description = new List<DescriptionContent>
{
new DescriptionContent("Transform your digital vision into reality with comprehensive development solutions for websites and applications, tailored to meet your unique business needs. Whether you're looking to launch a new website, develop a mobile app, or upgrade your existing digital platforms, our team of experienced developers is here to help. We combine cutting-edge technology with creative thinking to deliver solutions that not only meet but exceed your expectations. From front-end design to back-end development and everything in between, we handle every aspect of the development process with precision and expertise. Our goal is simple: to help you achieve your digital objectives and drive measurable results for your business."),
};
public static List<ContentButton> CButtons = new List<ContentButton>
{
new ContentButton("Submit", "#"),
new ContentButton("Cancel", "#")
};
}
@code {
}