2022-03-17 14:37:00 +01:00
|
|
|
import {
|
|
|
|
DarkMode,
|
|
|
|
Flex,
|
|
|
|
Stack,
|
2022-08-08 08:21:36 +02:00
|
|
|
Heading,
|
|
|
|
VStack,
|
2022-09-18 19:01:37 +02:00
|
|
|
Text,
|
2022-09-25 20:16:08 +02:00
|
|
|
HStack,
|
2023-10-17 08:03:30 +02:00
|
|
|
useDisclosure,
|
2022-03-17 14:37:00 +01:00
|
|
|
} from '@chakra-ui/react'
|
2022-02-09 18:40:40 +01:00
|
|
|
import { Footer } from 'components/common/Footer'
|
2022-04-05 09:51:43 +02:00
|
|
|
import { Header } from 'components/common/Header/Header'
|
2022-02-09 18:40:40 +01:00
|
|
|
import { SocialMetaTags } from 'components/common/SocialMetaTags'
|
|
|
|
import { BackgroundPolygons } from 'components/Homepage/Hero/BackgroundPolygons'
|
2022-05-13 15:22:44 -07:00
|
|
|
import { PlanComparisonTables } from 'components/PricingPage/PlanComparisonTables'
|
2022-09-25 20:16:08 +02:00
|
|
|
import { StripeClimateLogo } from 'assets/logos/StripeClimateLogo'
|
2022-10-19 08:29:33 +02:00
|
|
|
import { FreePlanCard } from 'components/PricingPage/FreePlanCard'
|
|
|
|
import { StarterPlanCard } from 'components/PricingPage/StarterPlanCard'
|
|
|
|
import { ProPlanCard } from 'components/PricingPage/ProPlanCard'
|
2022-11-03 19:39:42 +01:00
|
|
|
import { TextLink } from 'components/common/TextLink'
|
2023-04-13 11:39:10 +02:00
|
|
|
import { EnterprisePlanCard } from 'components/PricingPage/EnterprisePlanCard'
|
|
|
|
import { Faq } from 'components/PricingPage/Faq'
|
2023-10-17 08:03:30 +02:00
|
|
|
import { ChatsProTiersModal } from 'components/PricingPage/ChatsProTiersModal'
|
2022-02-09 18:40:40 +01:00
|
|
|
|
|
|
|
const Pricing = () => {
|
2023-10-17 08:03:30 +02:00
|
|
|
const { isOpen, onOpen, onClose } = useDisclosure()
|
2022-02-09 18:40:40 +01:00
|
|
|
|
|
|
|
return (
|
2022-03-17 14:37:00 +01:00
|
|
|
<Stack overflowX="hidden" bgColor="gray.900">
|
2023-10-17 08:03:30 +02:00
|
|
|
<ChatsProTiersModal isOpen={isOpen} onClose={onClose} />
|
2022-02-09 18:40:40 +01:00
|
|
|
<Flex
|
|
|
|
pos="relative"
|
|
|
|
flexDir="column"
|
|
|
|
minHeight="100vh"
|
|
|
|
alignItems="center"
|
2022-03-17 14:37:00 +01:00
|
|
|
bgGradient="linear(to-b, gray.900, gray.800)"
|
2022-02-09 18:40:40 +01:00
|
|
|
pb={40}
|
|
|
|
>
|
2022-03-17 14:37:00 +01:00
|
|
|
<SocialMetaTags currentUrl={`https://www.typebot.io/pricing`} />
|
2022-02-09 18:40:40 +01:00
|
|
|
<BackgroundPolygons />
|
|
|
|
<DarkMode>
|
2022-04-05 09:51:43 +02:00
|
|
|
<Header />
|
2022-02-09 18:40:40 +01:00
|
|
|
</DarkMode>
|
|
|
|
|
2022-09-18 19:01:37 +02:00
|
|
|
<VStack spacing={'24'} mt={[20, 32]} w="full">
|
2023-04-13 11:39:10 +02:00
|
|
|
<Stack align="center" spacing="12" w="full" px={4}>
|
2022-09-25 20:16:08 +02:00
|
|
|
<VStack>
|
2023-04-13 11:39:10 +02:00
|
|
|
<Heading fontSize={{ base: '4xl', xl: '6xl' }}>
|
|
|
|
Plans fit for you
|
|
|
|
</Heading>
|
|
|
|
<Text
|
|
|
|
maxW="900px"
|
|
|
|
textAlign="center"
|
|
|
|
fontSize={{ base: 'lg', xl: 'xl' }}
|
|
|
|
>
|
2022-11-21 11:12:43 +01:00
|
|
|
Whether you're a{' '}
|
2022-09-25 20:16:08 +02:00
|
|
|
<Text as="span" color="orange.200" fontWeight="bold">
|
|
|
|
solo business owner
|
2023-04-13 11:39:10 +02:00
|
|
|
</Text>
|
|
|
|
, a{' '}
|
2022-09-25 20:16:08 +02:00
|
|
|
<Text as="span" color="blue.200" fontWeight="bold">
|
|
|
|
growing startup
|
2023-04-13 11:39:10 +02:00
|
|
|
</Text>{' '}
|
|
|
|
or a{' '}
|
|
|
|
<Text as="span" fontWeight="bold">
|
|
|
|
large company
|
2022-09-25 20:16:08 +02:00
|
|
|
</Text>
|
2023-04-13 11:39:10 +02:00
|
|
|
, Typebot is here to help you build high-performing chat forms
|
|
|
|
for the right price. Pay for as little or as much usage as you
|
|
|
|
need.
|
2022-09-18 19:01:37 +02:00
|
|
|
</Text>
|
2022-09-25 20:16:08 +02:00
|
|
|
</VStack>
|
2022-09-18 19:01:37 +02:00
|
|
|
|
2022-09-25 20:16:08 +02:00
|
|
|
<HStack
|
|
|
|
maxW="500px"
|
|
|
|
spacing="4"
|
|
|
|
bgColor="gray.800"
|
|
|
|
p="4"
|
|
|
|
rounded="md"
|
|
|
|
>
|
|
|
|
<StripeClimateLogo />
|
|
|
|
<Text fontSize="sm">
|
|
|
|
Typebot is contributing 1% of your subscription to remove CO₂
|
|
|
|
from the atmosphere.{' '}
|
2022-11-03 19:39:42 +01:00
|
|
|
<TextLink href="https://climate.stripe.com/5VCRAq" isExternal>
|
|
|
|
More info
|
|
|
|
</TextLink>
|
2022-09-25 20:16:08 +02:00
|
|
|
</Text>
|
|
|
|
</HStack>
|
2023-10-17 08:03:30 +02:00
|
|
|
<Stack
|
|
|
|
direction={['column', 'row']}
|
|
|
|
alignItems={['stretch']}
|
|
|
|
spacing={10}
|
|
|
|
w="full"
|
|
|
|
maxW="1200px"
|
|
|
|
>
|
|
|
|
<FreePlanCard />
|
|
|
|
<StarterPlanCard />
|
|
|
|
<ProPlanCard onChatsTiersClick={onOpen} />
|
2022-09-25 20:16:08 +02:00
|
|
|
</Stack>
|
2023-04-13 11:39:10 +02:00
|
|
|
|
|
|
|
<EnterprisePlanCard />
|
2022-02-09 18:40:40 +01:00
|
|
|
</Stack>
|
2022-09-25 20:16:08 +02:00
|
|
|
|
2022-05-13 15:22:44 -07:00
|
|
|
<VStack maxW="1200px" w="full" spacing={[12, 20]} px="4">
|
|
|
|
<Stack w="full" spacing={10} display={['none', 'flex']}>
|
|
|
|
<Heading>Compare plans & features</Heading>
|
2023-10-17 08:03:30 +02:00
|
|
|
<PlanComparisonTables onChatsTiersClick={onOpen} />
|
2022-05-13 15:22:44 -07:00
|
|
|
</Stack>
|
2023-04-13 11:39:10 +02:00
|
|
|
<Faq />
|
2022-03-17 14:37:00 +01:00
|
|
|
</VStack>
|
2022-02-09 18:40:40 +01:00
|
|
|
</VStack>
|
|
|
|
</Flex>
|
|
|
|
<Footer />
|
|
|
|
</Stack>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Pricing
|