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

82 lines
3.0 KiB
TypeScript
Raw Normal View History

2022-08-08 08:21:36 +02:00
import { Stack, Text, Box, Flex, Heading } 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 selfie from '../public/images/about/selfie.png'
import Image from 'next/image'
import { Footer } from 'components/common/Footer'
import { TextLink } from 'components/common/TextLink'
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">
2022-11-21 11:12:43 +01:00
<Heading as="h1">Typebot&apos;s story</Heading>
2022-04-10 17:39:39 -05:00
</Flex>
<Text>
2022-11-21 11:12:43 +01:00
Typebot&apos;s team is composed of only me, Baptiste Arnaud, a
Software Engineer based in France.
2022-04-10 17:39:39 -05:00
</Text>
<Flex w="full" justify="center">
<Box as="figure" maxW="200px">
<Image src={selfie} alt="selfie" />
</Box>
</Flex>
<Text>
2022-11-21 11:12:43 +01:00
I&apos;m passionate about great product UX and, during the first COVID
2022-04-10 17:39:39 -05:00
lockdown, I decided to create my own Typeform alternative.
</Text>
<Text>
Typebot was launched in July 2020. It is completely independent,
2022-11-21 11:12:43 +01:00
self-funded, and bootstrapped. At the current stage, I&apos;m not
2022-04-10 17:39:39 -05:00
interested in raising funds or taking investments.
</Text>
<Text>
2022-06-15 16:16:44 +02:00
Because I love open-source SaaS, I decided in early 2022, alongside
2022-04-10 17:39:39 -05:00
the launch of a major 2.0 release, to open-source the project
entirely. Anyone can now read the source code and contribute to the
project. You can also self-host your own version of Typebot on your
server.
</Text>
<Text>
With Typebot, I want to create the best bot-building experience. My
goal is to empower you as a user and help you build great user
experiences. Also, privacy comes first. While using Typebot, you
2022-11-21 11:12:43 +01:00
aren&apos;t tracked by some third-party analytics tool.
2022-04-10 17:39:39 -05:00
</Text>
<Text>
2022-11-21 11:12:43 +01:00
I&apos;m working hard on making a living from Typebot with a simple
2022-04-10 17:39:39 -05:00
business model: <br />
<br /> You can use the tool for free but your forms will contain a
2022-11-21 11:12:43 +01:00
&quot;Made with Typebot&quot; small badge that potentially gets people
to know about the product. If you want to remove it and also have
access to other advanced features, you have to subscribe for $39 per
month.
2022-04-10 17:39:39 -05:00
</Text>
<Text>
If you have any questions, feel free to reach out to me at{' '}
<TextLink href={'mailto:baptiste@typebot.io'}>
2022-04-10 17:39:39 -05:00
baptiste@typebot.io
</TextLink>
2022-04-10 17:39:39 -05:00
</Text>
</Stack>
<Footer />
</div>
)
}
export default AboutPage