@if (!string.IsNullOrEmpty(Title))
{
@Title
}
@if (!string.IsNullOrEmpty(Subtitle))
{
@Subtitle
}
@if (!string.IsNullOrEmpty(Description))
{
@Description
}
@code {
[Parameter]
public string? Image { get; set; }
[Parameter]
public string? Title { get; set; }
[Parameter]
public string? Subtitle { get; set; }
[Parameter]
public string? Description { get; set; }
}