2
0

📝 Add "Top 5 Alternatives to Landbot" article

Co-authored-by: Baptiste Arnaud <contact@baptiste-arnaud.fr>
Co-authored-by: Baptiste Arnaud <baptiste.arnaud95@gmail.com>
This commit is contained in:
younesbenallal
2024-04-22 16:04:59 +02:00
committed by GitHub
parent a09ccd15c1
commit a1da5f2cd4
14 changed files with 216 additions and 52 deletions

View File

@@ -48,5 +48,27 @@ Here are all the components you can use in your blog post:
- `YouTube`: To embed a YouTube video. Example: `<YouTube id="<YOUTUBE_VIDEO_ID>" />`
- `Loom`: To embed a Loom video. Example: `<Loom id="<LOOM_VIDEO_ID>" />`
- `Cta`: To display a call-to-action that redirects to Typebot. Example: `<Cta />`
- `Table`: To display a table. It expects 2 props: `headers` and `rows`. Example:
For rendering tables you should use the native html table related tags.
```tsx
<Table
headers={['Feature', 'Typebot', 'Landbot']}
rows={[
[
'Pricing',
'Free plan, $39/mo Starter, $99/mo Pro',
'Free plan, €40/mo Starter, €150/mo Pro, €400/mo Business',
],
[
'Integrations',
'Google Sheets, Webhooks, Zapier, Make, SendGrid',
'Dialogflow, Salesforce, Slack, Google Sheets, Zapier, Mailchimp',
],
[
'Customization',
'Full theme customization, custom CSS',
'Limited theme options',
],
]}
/>
```