Back to projects

Supply Chain Platform

TrustMark

A product catalog and supply chain tracking platform with QR code generation for provenance verification, enabling brands and consumers to trace product history end-to-end.

Project overview

TrustMark makes supply chain history easier to inspect by pairing product records with scannable QR codes and a clear provenance trail.

What I worked on

  • Mapped product history into a traceable catalog structure.
  • Designed QR-based provenance verification flows.
  • Created a consumer-facing journey for inspecting product history.

Implementation snippet

A look at the solution

const createTraceCode = async (productId) => {
  const traceUrl = new URL(
    `/trace/${productId}`,
    process.env.PUBLIC_APP_URL
  );

  return QRCode.toDataURL(traceUrl.toString());
};