| 1 |
import React from 'react' |
| 2 |
import { __ } from '@wordpress/i18n' |
| 3 |
import { DemoUpsell } from '../../common/demo/DemoUpsell' |
| 4 |
|
| 5 |
export const AiAgentDemoUpsell: React.FC<{ onReplay: VoidFunction }> = ({ onReplay }) => |
| 6 |
<DemoUpsell |
| 7 |
title={__('That was a demo — the real agent writes for you', 'code-snippets')} |
| 8 |
onReplay={onReplay} |
| 9 |
> |
| 10 |
<p>{__('The whole walkthrough was scripted and ran inside this plugin. No prompt or snippet left your site, and none were added to it.', 'code-snippets')}</p> |
| 11 |
<p>{__('In Code Snippets Pro the AI Agent does all of this for whatever you ask it to build, and the snippets it writes are real — saved to your site inactive, until you have read them and switched them on.', 'code-snippets')}</p> |
| 12 |
</DemoUpsell> |
| 13 |
|