function Feature()

in src/components/HomepageFeatures/index.tsx [78:85]


function Feature({title, description}: FeatureItem) {
  return (
    <div className='text-center px-2 py-10 bg-feature shadow-md rounded-sm background-gradient'>
      <Heading as='h3' className='text-xl font-bold mb-2'>{title}</Heading>
      <p>{description}</p>
    </div>
  );
}