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

120 lines
3.9 KiB
TypeScript
Raw Normal View History

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,
useDisclosure,
2022-03-17 14:37:00 +01:00
} from '@chakra-ui/react'
import { Footer } from 'components/common/Footer'
2022-04-05 09:51:43 +02:00
import { Header } from 'components/common/Header/Header'
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'
import { FreePlanCard } from 'components/PricingPage/FreePlanCard'
import { StarterPlanCard } from 'components/PricingPage/StarterPlanCard'
import { ProPlanCard } from 'components/PricingPage/ProPlanCard'
import { TextLink } from 'components/common/TextLink'
import { EnterprisePlanCard } from 'components/PricingPage/EnterprisePlanCard'
import { Faq } from 'components/PricingPage/Faq'
import { ChatsProTiersModal } from 'components/PricingPage/ChatsProTiersModal'
const Pricing = () => {
const { isOpen, onOpen, onClose } = useDisclosure()
return (
2022-03-17 14:37:00 +01:00
<Stack overflowX="hidden" bgColor="gray.900">
<ChatsProTiersModal isOpen={isOpen} onClose={onClose} />
<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)"
pb={40}
>
2022-03-17 14:37:00 +01:00
<SocialMetaTags currentUrl={`https://www.typebot.io/pricing`} />
<BackgroundPolygons />
<DarkMode>
2022-04-05 09:51:43 +02:00
<Header />
</DarkMode>
2022-09-18 19:01:37 +02:00
<VStack spacing={'24'} mt={[20, 32]} w="full">
<Stack align="center" spacing="12" w="full" px={4}>
2022-09-25 20:16:08 +02:00
<VStack>
<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&apos;re a{' '}
2022-09-25 20:16:08 +02:00
<Text as="span" color="orange.200" fontWeight="bold">
solo business owner
</Text>
, a{' '}
2022-09-25 20:16:08 +02:00
<Text as="span" color="blue.200" fontWeight="bold">
growing startup
</Text>{' '}
or a{' '}
<Text as="span" fontWeight="bold">
large company
2022-09-25 20:16:08 +02:00
</Text>
, 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.{' '}
<TextLink href="https://climate.stripe.com/5VCRAq" isExternal>
More info
</TextLink>
2022-09-25 20:16:08 +02:00
</Text>
</HStack>
<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>
<EnterprisePlanCard />
</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>
<PlanComparisonTables onChatsTiersClick={onOpen} />
2022-05-13 15:22:44 -07:00
</Stack>
<Faq />
2022-03-17 14:37:00 +01:00
</VStack>
</VStack>
</Flex>
<Footer />
</Stack>
)
}
export default Pricing