type props = { imagePath: string; title: string; text: string; delay?: number; }; export const FeatureColumn = ({ imagePath, title, text, delay = 0 }: props) => { return (
{/* Icon container */}
{title}
{text}
); };