diff --git a/src/components/ApplicationStarter.tsx b/src/components/ApplicationStarter.tsx index d1e8fdc1f..b73030666 100644 --- a/src/components/ApplicationStarter.tsx +++ b/src/components/ApplicationStarter.tsx @@ -766,6 +766,71 @@ export function ApplicationStarter({ ))} + {showActionSection ? ( +
+ {!showCliExportActions ? ( +
+ {!selectedHostingDeployPartner + ? renderActionAnchor({ + action: 'netlify', + className: + 'border-[#00AD9F] bg-[#00AD9F] text-white hover:bg-[#009a8e]', + href: netlifyStartHref, + icon: , + label: secondaryActionLabel, + onTrack: () => { + trackActivation({ + action: 'netlify_start', + surface: 'result_panel', + provider: 'netlify', + }) + }, + size: 'sm', + }) + : null} + + {renderActionAnchor({ + action: 'codex', + className: + 'border-gray-900 bg-gray-900 text-white hover:bg-gray-800 dark:border-gray-100 dark:bg-gray-100 dark:text-gray-950 dark:hover:bg-gray-200', + href: codexStartHref, + icon: ( + + + + + ), + label: 'Open in Codex', + onTrack: () => { + trackActivation({ + action: 'open_codex', + surface: 'result_panel', + }) + }, + size: 'sm', + })} +
+ ) : null} + +
+ {renderSelectedHostingDeployButton()} + {renderCopyPromptButton()} + {showCliExportActions + ? renderCopyCliCommandButton() + : null} +
+
+ ) : null} ) : null}