2
0
Files
bot/ee/apps/landing-page/pages/about.tsx

107 lines
4.5 KiB
TypeScript
Raw Normal View History

import { Stack, Text, Flex, Heading, List, ListItem } from '@chakra-ui/react'
2022-04-10 17:39:39 -05:00
import { Header } from 'components/common/Header/Header'
import { SocialMetaTags } from 'components/common/SocialMetaTags'
import React from 'react'
import { Footer } from 'components/common/Footer'
import { EndCta } from 'components/Homepage/EndCta'
2022-04-10 17:39:39 -05:00
const AboutPage = () => {
return (
<div className="flex flex-col items-center w-full overflow-x-hidden ">
<Header />
<SocialMetaTags currentUrl={`https://www.typebot.io/about`} />
<Stack
spacing={10}
mx="auto"
maxW="3xl"
my="20"
fontSize="17px"
textAlign="justify"
>
<Flex w="full">
<Heading as="h1">Why Typebot?</Heading>
2022-04-10 17:39:39 -05:00
</Flex>
<Text>
I&apos;m Baptiste, 28 years old. I&apos;m a software product engineer.
I am passionated about great user experiences and beautiful
interfaces.
2022-04-10 17:39:39 -05:00
</Text>
<Text>
This is why I&apos;ve started working on Typebot, 3 years ago. It is
my attempt on a great chatbot builder.
</Text>
<Text>
In France, people don&apos;t like chatbots. They always think about it
as the guard before getting the chance to talk to a human. You ask a
question to a robot and it tries to understand what you&apos;re saying
and help, but it does not a great job at this. (now, it is maybe not
that accurate since the rise of LLMs)
</Text>
<Text>But I think we undervalue the potential of chatbots.</Text>
<Text>
You chat with friends, colleagues and family on messaging platform
daily. You are used and you like this chat experience. That&apos;s why
businesses need to leverage this, it&apos;s a place where conversion
is high.
</Text>
<Text>
In an ideal world, a user should be able to chat with a human from a
company and have an instant answer. The problem is that it is
synchronous, time-consuming and it requires a huge customer support
team working 24/7. It doesn&apos;t scale at all. Waiting for an answer
from a human impacts the customer experience.
2022-04-10 17:39:39 -05:00
</Text>
<Text>
Chatbots are a solution. You can chat with your customers, at scale.
2022-04-10 17:39:39 -05:00
</Text>
<Text>
But, when built incorrectly, chatbots can be detrimental to your user
experience. Most solutions out there focus on customer support. It can
be so much more.
2022-04-10 17:39:39 -05:00
</Text>
<Text>A great chatbot should:</Text>
<List listStyleType="initial">
<ListItem>Provide a customised experience to the user</ListItem>
<ListItem>
Have a great user interface and beautiful animations
</ListItem>
<ListItem>Feel native to the business brand</ListItem>
<ListItem>Provide what the user is looking for</ListItem>
</List>
2022-04-10 17:39:39 -05:00
<Text>
A chatbot is not necessarily tied to customer support. It can also do:
2022-04-10 17:39:39 -05:00
</Text>
<List listStyleType="initial">
<ListItem>Lead generation and qualification</ListItem>
<ListItem>Quizzes</ListItem>
<ListItem>Surveys</ListItem>
<ListItem>User onboarding</ListItem>
<ListItem>Product presentation</ListItem>
<ListItem>Registrations (newsletter, waiting list)</ListItem>
</List>
2022-04-10 17:39:39 -05:00
<Text>
To build that kind of chatbots, you need a tool that gives you enough
freedom to closely tie it to your business logic. The build experience
should be a reliable and fun experience. You also need a space where
you can analyse your results so that you can incrementally improve
your bots.
2022-04-10 17:39:39 -05:00
</Text>
<Text>This is what Typebot provides.</Text>
2022-04-10 17:39:39 -05:00
<Text>
I&apos;ve built this tool by focusing on user empowering. Typebot is
extremely flexible and provides the building blocks to create great
chat experiences. Often times, the more freedom you give to the user,
the less intuitive the tool become. I try not to fall into that trap
with Typebot by providing the best defaults for each option. I also
try to help you learn master the tool with good templates and video
tutorials.
2022-04-10 17:39:39 -05:00
</Text>
</Stack>
<EndCta heading="Improve conversion and user engagement with typebots" />
2022-04-10 17:39:39 -05:00
<Footer />
</div>
)
}
export default AboutPage