import React from "react" import Link from 'next/link' import PropTypes from "prop-types" import { Box, Button, Flex, Image, Heading, Stack, Text, } from "@chakra-ui/react" import AuthButton from '../AuthButton' import { signIn } from "next-auth/client" export default function Hero({ title, subtitle, image, ctaLink, ctaText, ...rest }) { return ( {title} {subtitle} No credit card required. ) } Hero.propTypes = { title: PropTypes.string, subtitle: PropTypes.string, image: PropTypes.string, ctaText: PropTypes.string, ctaLink: PropTypes.string, } Hero.defaultProps = { title: "Hero", subtitle: "This is the subheader section where you describe the basic benefits of your product", image: "https://source.unsplash.com/collection/404339/800x600", ctaText: "Create your account now", ctaLink: "", }