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

28 lines
1.4 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@page "/webdesign"
@using BlazorWASM.Shared
@using SharedUI.Shared.Components.Layout
<TitlePlusImageLeftComponent titlePlusImageModel="@contentModel1"></TitlePlusImageLeftComponent>
@code {
public TitlePlusImageModel contentModel1 = new TitlePlusImageModel("Web Design", ContentModel1Description, "https://plus.unsplash.com/premium_photo-1682140914933-f9704d7bc14f?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8ODV8fHNvZnR3YXJlJTIwZGV2ZWxvcG1lbnR8ZW58MHx8MHx8fDA%3D", CButtons);
public static List<DescriptionContent> ContentModel1Description = new List<DescriptionContent>
{
new DescriptionContent("Create visually stunning websites tailored to your brand identity, with intuitive navigation and responsiveness across all devices. Our web design services go beyond just aesthetics we believe in creating websites that deliver exceptional user experiences. From the layout and typography to the color scheme and imagery, every aspect of your website is meticulously crafted to reflect your brand's personality and resonate with your target audience. We prioritize usability and accessibility, ensuring that your website not only looks great but also functions flawlessly on all devices, from desktops to smartphones."),
};
public static List<ContentButton> CButtons = new List<ContentButton>
{
new ContentButton("Submit", "#"),
new ContentButton("Cancel", "#")
};
}