import { Badge, Box, Flex, Heading, Image, Text } from '@chakra-ui/react'; import React from 'react'; function DemoCard({ icon, title, description, imageUrl, badge, onClick }) { return ( {imageUrl && ( {title} )} {icon} {title} {description} {badge && ( {badge} )} ); } export default DemoCard;