import React from 'react'; const CombinedWorkflowLayout = ({ introTitle = "Introduction and Workflow", advantageTitle = "Advantage", introItems = [], advantageItems = [], imageUrl, imageAlt = "Workflow diagram" }) => { return (
{/* Main container with two columns */}
{/* Left Column - Content */}
{/* Introduction Section */}

{introTitle}

    {introItems.map((item, index) => (
  • {item}
  • ))}
{/* Advantage Section */}

{advantageTitle}

    {advantageItems.map((item, index) => (
  • {item}
  • ))}
{/* Right Column - Workflow Image */}
{imageUrl ? ( {imageAlt} ) : (

Workflow image will appear here

Please provide the imageUrl prop

)}
); }; export default CombinedWorkflowLayout;