import { defineStore } from "pinia"; export const useProjectStore = defineStore("project", () => { const stepsLabels = { clientBrief: "Votre brief", proposal: "Proposition commerciale", extendedBrief: "Brief enrichi", industrialIdeation: "Idéation industrielle", virtualSample: "Échantillon virtuel", physicalSample: "Échantillon physique", }; return { stepsLabels }; });