2
0

📝 Add "Lead Generation Guide" article (#1465)

Co-authored-by: Baptiste Arnaud <baptiste.arnaud95@gmail.com>
This commit is contained in:
younesbenallal
2024-04-23 19:32:46 +02:00
committed by GitHub
parent bc50d62cf6
commit 5d99e00f6b
14 changed files with 277 additions and 15 deletions

View File

@ -17,7 +17,7 @@ type Props = {
polygonsBaseTop?: string
} & StackProps
export const EndCta = (props: Props) => {
export const EndCta = ({ heading, polygonsBaseTop, ...props }: Props) => {
return (
<VStack
as="section"
@ -28,7 +28,7 @@ export const EndCta = (props: Props) => {
justifyContent="center"
{...props}
>
<BackgroundPolygons baseTop={props.polygonsBaseTop} />
<BackgroundPolygons baseTop={polygonsBaseTop} />
<VStack
spacing="6"
maxW="3xl"
@ -37,13 +37,13 @@ export const EndCta = (props: Props) => {
py={{ base: '16', sm: '20' }}
textAlign="center"
>
{props.heading ? (
{heading ? (
<Heading
fontWeight="extrabold"
letterSpacing="tight"
data-aos="fade-up"
>
{props.heading}
{heading}
</Heading>
) : null}
<Flex>