import { TableContainer, Table, Thead, Tr, Th, Tbody, Td, Text, Stack, StackProps, HStack, Tooltip, chakra, Button, Heading, } from '@chakra-ui/react' import { CheckIcon } from 'assets/icons/CheckIcon' import { HelpCircleIcon } from 'assets/icons/HelpCircleIcon' import { NextChakraLink } from 'components/common/nextChakraAdapters/NextChakraLink' import { Plan } from 'db' import React from 'react' type Props = { starterPrice: string proPrice: string } & StackProps export const PlanComparisonTables = ({ starterPrice, proPrice, ...props }: Props) => { return (
Usage Free Starter Pro
Total bots Unlimited Unlimited Unlimited
Chats 300 / month 2,000 / month 10,000 / month
Additional Chats $10 per 500 $10 per 1,000
Storage 2 GB 10 GB
Additional Storage $5 per 1 GB $5 per 1 GB
Members Just you 2 seats 5 seats
Guests Unlimited Unlimited Unlimited
Features Free Starter Pro
Starter templates
Webhooks
Google Sheets
Google Analytics
Send emails
Zapier
Pabbly Connect
Make.com
Custom Javascript & CSS
Export CSV
File upload inputs
Unlimited Unlimited
Remove branding
Custom domains Unlimited
Support Free Starter Pro
Priority support
Feature request priority
Personal Free Starter {starterPrice} / month Pro {proPrice} / month
) } const TdWithTooltip = ({ text, tooltip, }: { text: string tooltip: string }) => ( {text} )