@page "/webdesign"
@using BlazorWASM.Shared
@using SharedUI.Shared.Components.Layout
@code {
public TitlePlusImageModel contentModel1 = new TitlePlusImageModel("Web Design", ContentModel1Description, "https://unsplash.com/photos/change-by-design-by-tim-brown-book-beside-smartphone-IyaNci0CyRk", CButtons);
public static List ContentModel1Description = new List
{
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 CButtons = new List
{
new ContentButton("Submit", "#"),
new ContentButton("Cancel", "#")
};
}