Skip to content

Commit

Permalink
docs(lp): 📝 Add about page
Browse files Browse the repository at this point in the history
  • Loading branch information
baptisteArno committed Apr 10, 2022
1 parent 38c53fb commit 6a8d6d4
Show file tree
Hide file tree
Showing 4 changed files with 88 additions and 1 deletion.
3 changes: 3 additions & 0 deletions apps/landing-page/components/common/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ export const Footer = () => {
</Stack>
<Stack align={'flex-start'}>
<ListHeader>Company</ListHeader>
<NextChakraLink href="/about" color="gray.400">
About
</NextChakraLink>
<NextChakraLink href="mailto:baptiste@typebot.io" color="gray.400">
Contact
</NextChakraLink>
Expand Down
2 changes: 1 addition & 1 deletion apps/landing-page/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
})

const pages = ['pricing', 'privacy-policies', 'terms-of-service']
const pages = ['pricing', 'privacy-policies', 'terms-of-service', 'about']

module.exports = withBundleAnalyzer({
async redirects() {
Expand Down
84 changes: 84 additions & 0 deletions apps/landing-page/pages/about.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
import { Box, Flex, Heading } from '@chakra-ui/layout'
import { Stack, Text } from '@chakra-ui/react'
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 { NextChakraLink } from 'components/common/nextChakraAdapters/NextChakraLink'

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">Typebot's story</Heading>
</Flex>

<Text>
Typebot's team is composed of only me, Baptiste Arnaud, a Software
Engineer based in France.
</Text>
<Flex w="full" justify="center">
<Box as="figure" maxW="200px">
<Image src={selfie} alt="selfie" />
</Box>
</Flex>

<Text>
I'm passionate about great product UX and, during the first COVID
lockdown, I decided to create my own Typeform alternative.
</Text>

<Text>
Typebot was launched in July 2020. It is completely independent,
self-funded, and bootstrapped. At the current stage, I'm not
interested in raising funds or taking investments.
</Text>
<Text>
Because I love open-source SaaS, I decided in early 2021, alongside
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
aren't tracked by some third-party analytics tool.
</Text>
<Text>
I'm working hard on making a living from Typebot with a simple
business model: <br />
<br /> You can use the tool for free but your forms will contain a
"Made with Typebot" 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 $30 per month.
</Text>
<Text>
If you have any questions, feel free to reach out to me at{' '}
<NextChakraLink
href={'mailto:baptiste@typebot.io'}
textDecor="underline"
>
baptiste@typebot.io
</NextChakraLink>
</Text>
</Stack>
<Footer />
</div>
)
}

export default AboutPage
Binary file added apps/landing-page/public/images/about/selfie.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

4 comments on commit 6a8d6d4

@vercel
Copy link

@vercel vercel bot commented on 6a8d6d4 Apr 10, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

builder-v2 – ./apps/builder

builder-v2-typebot-io.vercel.app
app.typebot.io
builder-v2-git-main-typebot-io.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 6a8d6d4 Apr 10, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 6a8d6d4 Apr 10, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 6a8d6d4 Apr 10, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.