2
0

feat(dashboard): New create typebot menu

This commit is contained in:
Baptiste Arnaud
2022-04-05 10:49:32 +02:00
parent eb5a5d9a15
commit 660b220f8d
7 changed files with 143 additions and 25 deletions

View File

@ -1,6 +1,41 @@
export type TemplateProps = { name: string; emoji: string; fileName: string }
export type TemplateProps = {
name: string
emoji: string
fileName: string
isComingSoon?: boolean
}
export const templates: TemplateProps[] = [
{ name: 'Lead Generation', emoji: '🤝', fileName: 'lead-gen.json' },
{ name: 'Customer Support', emoji: '😍', fileName: 'customer-support.json' },
{
name: 'Quiz',
emoji: '🕹️',
fileName: 'customer-support.json',
isComingSoon: true,
},
{
name: 'Lead Scoring',
emoji: '🏆',
fileName: 'customer-support.json',
isComingSoon: true,
},
{
name: 'FAQ',
emoji: '💬',
fileName: 'customer-support.json',
isComingSoon: true,
},
{
name: 'Conversational Resume',
emoji: '👨‍💼',
fileName: 'customer-support.json',
isComingSoon: true,
},
{
name: 'User Onboarding',
emoji: '🧑‍🚀',
fileName: 'customer-support.json',
isComingSoon: true,
},
]