2
0
Files
bot/ee/apps/landing-page/components/common/ArticleCta.tsx
2024-09-14 12:04:33 +02:00

22 lines
531 B
TypeScript

import { VStack, Heading, Button, Text } from '@chakra-ui/react'
import React from 'react'
export const ArticleCallToAction = () => (
<VStack spacing={6}>
<Heading fontSize="xx-large">
Collect up to 4x more responses without 4x the work.
</Heading>
<Button
size="lg"
colorScheme="orange"
as="a"
href="https://app.typebot.io/register"
>
Create a BLS bot
</Button>
<Text fontSize="sm" fontStyle="italic" color="gray.600">
It&apos;s free!
</Text>
</VStack>
)