/* This card is used on the landing page */ import { FiStar } from 'react-icons/fi'; type KeyFeatureProperties = { children: JSX.Element; }; const KeyFeature = ({ children }: KeyFeatureProperties): JSX.Element => (
{children}
); export default KeyFeature;