Create flow UX updates

This commit is contained in:
adilallo
2026-04-11 00:22:02 -06:00
parent ec5afd1464
commit a5c6b8971f
33 changed files with 1010 additions and 931 deletions
@@ -16,8 +16,10 @@ export function CardStackView({
title,
description,
layout,
headerLockupSize,
className,
}: CardStackViewProps) {
const lockupSize = headerLockupSize ?? "L";
const isSelected = (id: string) => selectedIds.includes(id);
// Compact: recommended only (up to 5). Expanded: all cards.
const compactCards = cards.filter((c) => c.recommended ?? false).slice(0, 5);
@@ -33,7 +35,7 @@ export function CardStackView({
title={title}
description={description}
justification="center"
size="L"
size={lockupSize}
/>
</div>
) : null}
@@ -73,7 +75,7 @@ export function CardStackView({
title={title}
description={description}
justification="center"
size="L"
size={lockupSize}
/>
</div>
) : null}