+
+
{focusEntryCopy.title}
+
{focusEntryCopy.helper}
+
+
+
+
+
+ {startHref ? (
+
+ {focusEntryCopy.startNow}
+
+ ) : (
+
+ )}
+
+
+
+ {ENTRY_SUGGESTIONS.map((suggestion) => {
+ const isActive = selectedPlanItemId === null && trimmedEntryGoal === suggestion.goal;
+
+ return (
+
+ );
+ })}
+
+
+
+
{focusEntryCopy.ritualMeta}
+
+
+
+ {previewItems.length > 0 ? (
+
+
+
{focusEntryCopy.previewTitle}
+
+ {focusEntryCopy.previewDescription}
+
+
+
+ {previewItems.map((item) => {
+ const isSelected = selectedPlanItemId === null && trimmedEntryGoal === item.title;
+
+ return (
+
+ );
+ })}
+
+
+ ) : null}
+
+ {source === 'unavailable' && !isLoading ? (
+
+ {focusEntryCopy.apiUnavailableNote}
+
+ ) : null}
+
+