import React from 'react'; interface FeatureBoxProps { title: string; description: string; theme?: string; } const FeatureBox: React.FC = ({ title, description, theme }) => { const isDarkMode = theme === 'dark'; return (

{title}

{description}

); }; export default FeatureBox;