Basic selection
<FodSelectionGroup @bind-Value="_plan" AriaLabel="Choose a plan">
<FodSelectionCard Value="@("basic")" IsRecommended="true">
<Header><strong>Basic</strong></Header>
<ChildContent>Free — 5 GB storage, up to 3 users.</ChildContent>
</FodSelectionCard>
<FodSelectionCard Value="@("pro")">
<Header><strong>Pro</strong></Header>
<ChildContent>$9/month — 50 GB storage, unlimited users.</ChildContent>
</FodSelectionCard>
<FodSelectionCard Value="@("enterprise")">
<Header><strong>Enterprise</strong></Header>
<ChildContent>Custom pricing — unlimited everything.</ChildContent>
</FodSelectionCard>
</FodSelectionGroup>
@code {
private string? _plan;
}