'use client' import { Heading, Button, Text, Flex, VStack, StackProps, } from '@chakra-ui/react' import Link from 'next/link' import React from 'react' import { BackgroundPolygons } from './Hero/BackgroundPolygons' type Props = { heading?: string polygonsBaseTop?: string } & StackProps export const EndCta = ({ heading, polygonsBaseTop, ...props }: Props) => { return ( {heading ? ( {heading} ) : null} No trial. Generous free plan. ) }