2
0
Files
bot/apps/landing-page/components/Homepage/EndCta.tsx

53 lines
1.3 KiB
TypeScript
Raw Normal View History

2022-03-17 14:37:00 +01:00
import { Heading, Button, Text, Flex, VStack } from '@chakra-ui/react'
import Link from 'next/link'
import React from 'react'
import { BackgroundPolygons } from './Hero/BackgroundPolygons'
export const EndCta = () => {
return (
2022-03-17 14:37:00 +01:00
<VStack
as="section"
py={32}
pos="relative"
bgGradient="linear(to-b, gray.900, gray.800)"
height="100vh"
justifyContent="center"
>
<BackgroundPolygons />
2022-03-17 14:37:00 +01:00
<VStack
spacing="6"
maxW="2xl"
mx="auto"
px={{ base: '6', lg: '8' }}
py={{ base: '16', sm: '20' }}
textAlign="center"
>
2022-03-17 14:37:00 +01:00
<Heading
fontWeight="extrabold"
letterSpacing="tight"
data-aos="fade-up"
>
Take your forms to the next level
</Heading>
2022-03-17 14:37:00 +01:00
<Flex>
<Button
as={Link}
2022-03-17 14:37:00 +01:00
href="https://app.typebot.io/register"
size="lg"
colorScheme="orange"
height="4rem"
2022-03-17 14:37:00 +01:00
data-aos="fade-up"
data-aos-delay="300"
2022-03-17 14:37:00 +01:00
>
Create a typebot
</Button>
</Flex>
2022-03-17 14:37:00 +01:00
<Text color="gray.400" data-aos="fade-up" data-aos-delay="400">
2022-03-17 14:37:00 +01:00
No trial. Generous, unlimited <strong>free</strong> plan.
</Text>
2022-03-17 14:37:00 +01:00
</VStack>
</VStack>
)
}