// components/shared/IntroductionLayout.jsx const IntroductionLayout = ({ title = "Introduction and Workflow", contentItems = [], imageUrl, imageAlt = "", badgeText, badgeSubtext, backgroundColor = "#f8f9fa", badgeColor = "bg-teal-600" }) => { return (

{title}

{/* Two column layout */}
{/* Left side content */}
    {contentItems.map((item, index) => (
  • {item}
  • ))}
{/* Right side image */}
); }; export default IntroductionLayout;