+ {!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',
+ })}
+
+ {renderSelectedHostingDeployButton()}
+ {renderCopyPromptButton()}
+ {showCliExportActions
+ ? renderCopyCliCommandButton()
+ : null}
+