refactor: replace Wizard with CoopBuilder in navigation, enhance budget store structure, and streamline template components for improved user experience
This commit is contained in:
parent
eede87a273
commit
f67b138d95
33 changed files with 4970 additions and 2451 deletions
40
sample/skillsToOffersSamples.ts
Normal file
40
sample/skillsToOffersSamples.ts
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
import type { Member, SkillTag, ProblemTag } from "~/types/coaching";
|
||||
import { skillsCatalog, problemsCatalog } from "~/data/skillsProblems";
|
||||
|
||||
export const membersSample: Member[] = [
|
||||
{
|
||||
id: "sample-1",
|
||||
name: "Maya Chen",
|
||||
role: "Design Lead",
|
||||
hourly: 32,
|
||||
availableHrs: 40
|
||||
},
|
||||
{
|
||||
id: "sample-2",
|
||||
name: "Alex Rivera",
|
||||
role: "Developer",
|
||||
hourly: 45,
|
||||
availableHrs: 30
|
||||
},
|
||||
{
|
||||
id: "sample-3",
|
||||
name: "Jordan Blake",
|
||||
role: "Content Writer",
|
||||
hourly: 28,
|
||||
availableHrs: 20
|
||||
}
|
||||
];
|
||||
|
||||
export const skillsCatalogSample: SkillTag[] = skillsCatalog;
|
||||
|
||||
export const problemsCatalogSample: ProblemTag[] = problemsCatalog;
|
||||
|
||||
// Pre-selected sample data for quick demos
|
||||
export const sampleSelections = {
|
||||
selectedSkillsByMember: {
|
||||
"sample-1": ["design", "facilitation"], // Maya: Design + Facilitation
|
||||
"sample-2": ["dev", "pm"], // Alex: Dev + PM
|
||||
"sample-3": ["writing", "marketing"] // Jordan: Writing + Marketing
|
||||
},
|
||||
selectedProblems: ["unclear-pitch", "need-landing-store-page"]
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue