2022-11-15 09:35:48 +01:00
|
|
|
import { TemplateProps } from './types'
|
2022-04-05 09:51:43 +02:00
|
|
|
|
|
|
|
export const templates: TemplateProps[] = [
|
|
|
|
{ name: 'Lead Generation', emoji: '🤝', fileName: 'lead-gen.json' },
|
|
|
|
{ name: 'Customer Support', emoji: '😍', fileName: 'customer-support.json' },
|
2022-04-08 18:07:14 -05:00
|
|
|
{ name: 'Quiz', emoji: '🕹️', fileName: 'quiz.json' },
|
2022-04-10 14:20:11 -05:00
|
|
|
{ name: 'Lead Scoring', emoji: '🏆', fileName: 'lead-scoring.json' },
|
2023-02-22 15:40:02 +01:00
|
|
|
|
2022-05-31 14:47:58 +02:00
|
|
|
{
|
|
|
|
name: 'Digital Product Payment',
|
|
|
|
emoji: '🖼️',
|
|
|
|
fileName: 'digital-product-payment.json',
|
|
|
|
},
|
2022-04-05 10:49:32 +02:00
|
|
|
{
|
|
|
|
name: 'FAQ',
|
|
|
|
emoji: '💬',
|
2022-10-13 08:42:24 +02:00
|
|
|
fileName: 'faq.json',
|
2022-04-05 10:49:32 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'User Onboarding',
|
|
|
|
emoji: '🧑🚀',
|
2023-02-22 15:40:02 +01:00
|
|
|
fileName: 'onboarding.json',
|
|
|
|
isNew: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Conversational Resume',
|
|
|
|
emoji: '👨💼',
|
2022-04-05 10:49:32 +02:00
|
|
|
fileName: 'customer-support.json',
|
|
|
|
isComingSoon: true,
|
|
|
|
},
|
2022-04-05 09:51:43 +02:00
|
|
|
]
|