2
0

docs(lp): 💄 Add animation on scroll

This commit is contained in:
Baptiste Arnaud
2022-03-17 14:37:00 +01:00
parent 21e926a477
commit 37b7ca32e9
15 changed files with 178 additions and 39 deletions

View File

@ -61,14 +61,19 @@ export const Features = () => {
spacing={12}
>
<VStack>
<Heading as="h1" textAlign="center">
<Heading as="h1" textAlign="center" data-aos="fade">
And many more features
</Heading>
<Text color="gray.500" fontSize={['lg', 'xl']} textAlign="center">
<Text
color="gray.500"
fontSize={['lg', 'xl']}
textAlign="center"
data-aos="fade"
>
Typebot makes form building easy and comes with powerful features
</Text>
</VStack>
<SimpleGrid columns={[1, 3]} spacing="10" pt="10">
<SimpleGrid columns={[1, 3]} spacing="10" pt="10" data-aos="fade">
{features.map((feature, idx) => (
<FeatureCard key={idx} {...feature} />
))}