diff --git a/apps/landing-page/components/common/Footer.tsx b/apps/landing-page/components/common/Footer.tsx index 0611d6ebf..49c145657 100644 --- a/apps/landing-page/components/common/Footer.tsx +++ b/apps/landing-page/components/common/Footer.tsx @@ -81,6 +81,9 @@ export const Footer = () => { Company + + About + Contact diff --git a/apps/landing-page/next.config.js b/apps/landing-page/next.config.js index 4d709b888..300555833 100644 --- a/apps/landing-page/next.config.js +++ b/apps/landing-page/next.config.js @@ -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() { diff --git a/apps/landing-page/pages/about.tsx b/apps/landing-page/pages/about.tsx new file mode 100644 index 000000000..271a70712 --- /dev/null +++ b/apps/landing-page/pages/about.tsx @@ -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 ( +
+
+ + + + Typebot's story + + + + Typebot's team is composed of only me, Baptiste Arnaud, a Software + Engineer based in France. + + + + selfie + + + + + I'm passionate about great product UX and, during the first COVID + lockdown, I decided to create my own Typeform alternative. + + + + 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. + + + 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. + + + 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. + + + I'm working hard on making a living from Typebot with a simple + business model:
+
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. +
+ + If you have any questions, feel free to reach out to me at{' '} + + baptiste@typebot.io + + +
+
+ ) +} + +export default AboutPage diff --git a/apps/landing-page/public/images/about/selfie.png b/apps/landing-page/public/images/about/selfie.png new file mode 100644 index 000000000..e22616854 Binary files /dev/null and b/apps/landing-page/public/images/about/selfie.png differ