2
0
Files
bot/apps/builder/src/features/templates/data.ts
Baptiste Arnaud 8347e5b2a8 Add dog insurance offer template
Closes #484
2023-05-04 15:32:13 -04:00

114 lines
3.2 KiB
TypeScript

import { TemplateProps } from './types'
export const templates: TemplateProps[] = [
{
name: 'Lead Generation',
emoji: '🤝',
fileName: 'lead-gen.json',
category: 'marketing',
description:
'You are a marketing agency and this bot allows you generate new leads interested in your services',
},
{
name: 'Customer Support',
emoji: '😍',
fileName: 'customer-support.json',
category: 'product',
description:
'A bot whose job is to collect user feedback: questions, bugs and feature requests.',
},
{
name: 'Quiz',
emoji: '🕹️',
fileName: 'quiz.json',
category: 'marketing',
description:
'A fun quizz to engage with your users and collect their emails',
},
{
name: 'Lead Scoring',
emoji: '🏆',
fileName: 'lead-scoring.json',
category: 'marketing',
description:
'Compute a score alongside lead qualification questions to rank your new prospects',
},
{
name: 'Lead magnet',
emoji: '🧲',
fileName: 'lead-magnet.json',
category: 'marketing',
description:
'Provide a free content to your prospects in exchange for their contact information.',
},
{
name: 'NPS Survey',
emoji: '⭐',
fileName: 'nps.json',
category: 'product',
description:
'A simple NPS survey to measure your customer satisfaction and improve your product',
},
{
name: 'User Onboarding',
emoji: '🧑‍🚀',
fileName: 'onboarding.json',
category: 'product',
description:
'A bot that asks for new user information before he start using your product',
},
{
name: 'Digital Product Payment',
emoji: '🖼️',
fileName: 'digital-product-payment.json',
description:
'A bot that allows you to sell digital products (ebooks, courses, etc.) and only provide the content after the payment is confirmed',
},
{
name: 'FAQ',
emoji: '💬',
fileName: 'faq.json',
category: 'product',
description:
'A bot that answers frequently asked questions about your product or service',
},
{
name: 'Movie Recommendation',
emoji: '🍿',
fileName: 'movie-recommendation.json',
description: 'A bot that recommends movies based on the user preferences',
},
{
name: 'Basic ChatGPT',
emoji: '🤖',
fileName: 'basic-chat-gpt.json',
description:
'A bot that uses the ChatGPT model to generate responses based on the user input',
},
{
name: 'ChatGPT personas',
emoji: '🎭',
fileName: 'chat-gpt-personas.json',
description:
'A bot that uses the ChatGPT model to generate responses based on the user input and the selected persona',
},
{
name: 'Lead Gen with AI',
emoji: '🦾',
fileName: 'lead-gen-ai.json',
category: 'marketing',
isNew: true,
description:
'You are a marketing agency and this bot allows you generate new leads interested in your services. An AI block is used to dig deeper into the user needs.',
},
{
name: 'Insurance offer',
emoji: '🐶',
fileName: 'dog-insurance-offer.json',
category: 'marketing',
isNew: true,
description:
'You are a dog insurance company. This bot allows you to collect information about the dog and provide a quote.',
},
]