Try your search with a different keyword or use * as a wildcard.
@model ContactUsModel
@{
Layout = "_ColumnsOne";
//title
NopHtml.AddTitleParts(T("PageTitle.ContactUs").Text);
//page class
NopHtml.AppendPageCssClassParts("html-contact-page");
}
@T("PageTitle.ContactUs")
@await Component.InvokeAsync(typeof(TopicBlockViewComponent), new { systemName = "ContactUs" })
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ContactUsTop, additionalData = Model })
@if (Model.SuccessfullySent)
{
@Model.Result
}
else
{
}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ContactUsBottom, additionalData = Model })