2022-11-15 09:35:48 +01:00
import { TemplateProps } from './types'
2022-04-05 09:51:43 +02:00
export const templates : TemplateProps [ ] = [
2023-04-20 10:49:25 +02:00
{
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' ,
} ,
2023-04-07 10:49:23 +02:00
{
name : 'Lead magnet' ,
emoji : '🧲' ,
fileName : 'lead-magnet.json' ,
2023-04-20 10:49:25 +02:00
category : 'marketing' ,
description :
'Provide a free content to your prospects in exchange for their contact information.' ,
2023-04-07 10:49:23 +02:00
} ,
2022-05-31 14:47:58 +02:00
{
2023-03-03 17:21:02 +01:00
name : 'NPS Survey' ,
emoji : '⭐' ,
fileName : 'nps.json' ,
2023-04-20 10:49:25 +02:00
category : 'product' ,
description :
'A simple NPS survey to measure your customer satisfaction and improve your product' ,
2022-04-05 10:49:32 +02:00
} ,
{
name : 'User Onboarding' ,
emoji : '🧑🚀' ,
2023-02-22 15:40:02 +01:00
fileName : 'onboarding.json' ,
2023-04-20 10:49:25 +02:00
category : 'product' ,
description :
'A bot that asks for new user information before he start using your product' ,
2023-02-22 15:40:02 +01:00
} ,
{
2023-03-03 17:21:02 +01:00
name : 'Digital Product Payment' ,
emoji : '🖼️' ,
fileName : 'digital-product-payment.json' ,
2023-04-20 10:49:25 +02:00
description :
'A bot that allows you to sell digital products (ebooks, courses, etc.) and only provide the content after the payment is confirmed' ,
2023-03-03 17:21:02 +01:00
} ,
{
name : 'FAQ' ,
emoji : '💬' ,
fileName : 'faq.json' ,
2023-04-20 10:49:25 +02:00
category : 'product' ,
description :
'A bot that answers frequently asked questions about your product or service' ,
2022-04-05 10:49:32 +02:00
} ,
2023-03-09 17:37:39 +01:00
{
name : 'Movie Recommendation' ,
emoji : '🍿' ,
fileName : 'movie-recommendation.json' ,
2023-04-20 10:49:25 +02:00
description : 'A bot that recommends movies based on the user preferences' ,
2023-03-09 17:37:39 +01:00
} ,
2023-03-13 16:29:24 +01:00
{
name : 'Basic ChatGPT' ,
emoji : '🤖' ,
fileName : 'basic-chat-gpt.json' ,
2023-04-20 10:49:25 +02:00
description :
'A bot that uses the ChatGPT model to generate responses based on the user input' ,
2023-03-30 17:47:16 +02:00
} ,
{
name : 'ChatGPT personas' ,
emoji : '🎭' ,
fileName : 'chat-gpt-personas.json' ,
2023-04-20 10:49:25 +02:00
description :
'A bot that uses the ChatGPT model to generate responses based on the user input and the selected persona' ,
2023-03-13 16:29:24 +01:00
} ,
2023-04-20 14:56:05 +02:00
{
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.' ,
} ,
2023-05-04 15:32:13 -04:00
{
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.' ,
} ,
2022-04-05 09:51:43 +02:00
]