import {
Accordion,
AccordionButton,
AccordionIcon,
AccordionItem,
AccordionPanel,
DarkMode,
Flex,
Stack,
Box,
Heading,
VStack,
Text,
HStack,
} from '@chakra-ui/react'
import { Footer } from 'components/common/Footer'
import { Header } from 'components/common/Header/Header'
import { SocialMetaTags } from 'components/common/SocialMetaTags'
import { BackgroundPolygons } from 'components/Homepage/Hero/BackgroundPolygons'
import { PlanComparisonTables } from 'components/PricingPage/PlanComparisonTables'
import { useEffect, useState } from 'react'
import { formatPrice, prices } from '@typebot.io/lib/pricing'
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'
const Pricing = () => {
const [starterPrice, setStarterPrice] = useState('$39')
const [proPrice, setProPrice] = useState('$89')
useEffect(() => {
setStarterPrice(formatPrice(prices.STARTER))
setProPrice(formatPrice(prices.PRO))
}, [])
return (
Plans fit for you
Whether you're a{' '}
solo business owner
{' '}
or a{' '}
growing startup
, Typebot is here to help you build high-performing bots for the
right price. Pay for as little or as much usage as you need.
Typebot is contributing 1% of your subscription to remove COâ‚‚
from the atmosphere.{' '}
More info
Need custom limits? Specific features?{' '}
Let's chat!
Compare plans & features
Frequently asked questions
)
}
const Faq = () => {
return (
What happens once I reach the monthly chats limit?
You will receive an email notification once you reached 80% of this
limit. Then, once you reach 100%, the bot will be closed to new users.
Upgrading your limit will automatically reopen the bot.
What happens once I reach the storage limit?
You will receive an email notification once you reached 80% of this
limit. Then, once you reach 100%, your users will still be able to
chat with your bot but their uploads won't be stored anymore. You
will need to upgrade the limit or free up some space to continue
collecting your users' files.
Why is there no trial?
For now, Typebot offers a Freemium based business model. My goal is to
make sure you have time to create awesome bots and collect valuable
results. If you need advanced features then you can upgrade any time.
If I change my mind, can I get a refund?
Sure! Just{' '}
shoot me an email
{' '}
and we'll figure things out 😀
)
}
export default Pricing