2020
← Back
Innovation Portal
Internal platform for submitting and tracking innovative ideas from pilot to production at Retail Business Services.
Developed innovation portal at Retail Business Services (Ahold Delhaize) that allows company personnel and BRMs to submit innovative ideas and track progress through the entire journey from Pilot to Production. Led front-end development as part of Innovation Lab with responsibility for teaching React.js, Express.js, and Node.js to co-ops. Managed merge requests for both backend and frontend repositories.
Tech Stack
React.jsNode.jsExpress.js
Impact
Company
Ahold Delhaize
Workflow
Pilot to Prod
Gallery
Implementation Highlight
IdeaWorkflow.tsxtypescript
type IdeaStage = 'submitted' | 'review' | 'pilot' | 'production';
interface Idea {
id: string;
title: string;
stage: IdeaStage;
submitter: User;
timeline: StageTransition[];
}
function IdeaTracker({ idea }: { idea: Idea }) {
return (
<div className="idea-card">
<h2>{idea.title}</h2>
<ProgressBar stage={idea.stage} />
<Timeline events={idea.timeline} />
</div>
);
}