From 66bdbd7458ecd33fa9f59e6ba648628ed153c2b0 Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Mon, 27 Mar 2023 03:44:54 +0100 Subject: [PATCH] Automate the title creation in new roadmap content --- bin/roadmap-content.cjs | 81 +++++++++++++++++++ package.json | 1 + .../100-help-user-think-about-their-action.md | 2 +- .../101-educate-and-encourage-user.md | 2 +- .../100-changing-user-behavior/index.md | 2 +- .../101-cheating/101-make-it-incidental.md | 2 +- .../102-automate-act-of-repition.md | 2 +- .../100-help-user-avoiding-the-cue.md | 2 +- .../101-replace-the-routine.md | 2 +- .../102-use-consciousness-to-interfere.md | 2 +- ...-mindfulness-to-avoid-acting-on-the-cue.md | 2 +- ...4-crowd-out-old-habit-with-new-behavior.md | 2 +- .../102-make-or-change-habbits/index.md | 2 +- .../100-bj-frogg-behavior-grid.md | 2 +- .../100-nir-eyal-hook-model.md | 2 +- .../101-cue-routine-reward-model.md | 2 +- .../clarify-product/100-target-outcome.md | 2 +- .../clarify-product/101-target-actor.md | 2 +- .../clarify-product/102-target-action.md | 2 +- .../100-create-user-personas.md | 2 +- .../100-business-model-canvas.md | 2 +- .../101-lean-canvas.md | 2 +- .../102-understand-the-product/index.md | 2 +- .../100-business-model-inspirator.md | 2 +- .../101-competitor-analysis.md | 2 +- .../102-five-forces-model.md | 2 +- .../new-business-model/103-swot-analysis.md | 2 +- .../100-user-stories.md | 2 +- .../deliverables/100-custom-experience-map.md | 2 +- .../deliverables/101-simple-flowchart.md | 2 +- .../102-event-driven-process-chain-model.md | 2 +- ...103-business-process-model-and-notation.md | 2 +- .../content/103-conceptual-design/index.md | 2 +- .../100-keep-it-short-simple.md | 2 +- .../things-to-lookout-for/101-make-it-easy.md | 2 +- .../102-make-progress-visible.md | 2 +- ...03-make-progress-meaningful-reward-user.md | 2 +- ...e-successful-completion-clearly-visible.md | 2 +- .../104-prototyping/100-good-layout-rules.md | 2 +- .../content/104-prototyping/index.md | 2 +- .../ux-patterns/100-call-to-action.md | 2 +- .../ux-patterns/101-status-reports.md | 2 +- .../ux-patterns/102-how-to-tips.md | 2 +- .../103-reminders-planning-prompts.md | 2 +- .../104-decision-making-support.md | 2 +- .../ux-patterns/105-behavior-change-games.md | 2 +- .../ux-patterns/109-social-sharing.md | 2 +- .../ux-patterns/110-goal-trackers.md | 2 +- .../wireframing/101-adobe-xd.md | 2 +- .../100-avoid-temporal-myopia.md | 2 +- .../101-remind-of-prior-commitment-to-act.md | 2 +- .../102-make-commitment-to-friends.md | 2 +- .../create-urgency/103-make-reward-scarce.md | 2 +- .../100-tell-user-and-ask.md | 2 +- .../101-make-it-clear-where-to-act.md | 2 +- .../102-clear-the-page-of-distractions.md | 2 +- .../100-prime-user-relevant-associations.md | 2 +- .../101-leverage-loss-aversion.md | 2 +- .../102-use-peer-comparisons.md | 2 +- .../103-use-competition.md | 2 +- .../104-avoid-cognitive-overhead.md | 2 +- .../105-avoid-choice-overload.md | 2 +- .../106-avoid-direct-payments.md | 2 +- .../content/105-ux-best-practices/index.md | 2 +- .../100-elicit-implementation-intentions.md | 2 +- .../101-default-everything.md | 2 +- .../102-lessen-the-burden-of-action-info.md | 2 +- .../103-deploy-peer-comparisons.md | 2 +- .../100-make-ui-professional-and-beautiful.md | 2 +- .../101-deploy-social-proof.md | 2 +- .../102-deploy-strong-subject-authority.md | 2 +- .../103-be-authentic-and-personal.md | 2 +- ...100-gather-lessons-prioritize-integrate.md | 2 +- .../content/106-measuring-the-impact/index.md | 2 +- .../testing/100-incremental-ab-testing.md | 2 +- .../testing/101-multivariate-testing.md | 2 +- 76 files changed, 156 insertions(+), 74 deletions(-) create mode 100644 bin/roadmap-content.cjs diff --git a/bin/roadmap-content.cjs b/bin/roadmap-content.cjs new file mode 100644 index 000000000..03ae72171 --- /dev/null +++ b/bin/roadmap-content.cjs @@ -0,0 +1,81 @@ +const fs = require('fs'); +const path = require('path'); + +const OPEN_AI_API_KEY = process.env.OPEN_AI_API_KEY; +const ALL_ROADMAPS_DIR = path.join(__dirname, '../src/data/roadmaps'); +const ROADMAP_JSON_DIR = path.join(__dirname, '../public/jsons/roadmaps'); + +const roadmapId = process.argv[2]; + +const allowedRoadmapIds = fs.readdirSync(ALL_ROADMAPS_DIR); +if (!roadmapId) { + console.error('roadmapId is required'); + process.exit(1); +} + +if (!allowedRoadmapIds.includes(roadmapId)) { + console.error(`Invalid roadmap key ${roadmapId}`); + console.error(`Allowed keys are ${allowedRoadmapIds.join(', ')}`); + process.exit(1); +} + +const ROADMAP_CONTENT_DIR = path.join(ALL_ROADMAPS_DIR, roadmapId, 'content'); + +function getFilesInFolder(folderPath, fileList = {}) { + const files = fs.readdirSync(folderPath); + + files.forEach((file) => { + const filePath = path.join(folderPath, file); + const stats = fs.statSync(filePath); + + if (stats.isDirectory()) { + getFilesInFolder(filePath, fileList); + } else if (stats.isFile()) { + const fileUrl = filePath + .replace(ROADMAP_CONTENT_DIR, '') // Remove the content folder + .replace(/\/\d+-/g, '/') // Remove ordering info `/101-ecosystem` + .replace(/\/index\.md$/, '') // Make the `/index.md` to become the parent folder only + .replace(/\.md$/, ''); // Remove `.md` from the end of file + + fileList[fileUrl] = filePath; + } + }); + + return fileList; +} + +const topicUrlToPathMapping = getFilesInFolder(ROADMAP_CONTENT_DIR); + +const roadmapJson = require(path.join(ROADMAP_JSON_DIR, `${roadmapId}.json`)); +const groups = roadmapJson?.mockup?.controls?.control?.filter( + (control) => control.typeID === '__group__' && !control.properties?.controlName?.startsWith('ext_link') +); + +groups.forEach((group) => { + const topicId = group?.properties?.controlName; + const topicTitle = group?.children?.controls?.control?.find((control) => control?.typeID === 'Label')?.properties + ?.text; + const currTopicUrl = topicId.replace(/^\d+-/g, '/').replace(/:/g, '/'); + const contentFilePath = topicUrlToPathMapping[currTopicUrl]; + + const currentFileContent = fs.readFileSync(contentFilePath, 'utf8'); + const isFileEmpty = currentFileContent.replace(/^#.+/, ``).trim() == ''; + + if (!isFileEmpty) { + console.log(`${topicId} not empty. Ignoring...`); + return; + } + + let newFileContent = `# ${topicTitle}`; + + if (!OPEN_AI_API_KEY) { + console.log(`OPEN_AI_API_KEY not set. Only adding title to ${topicId}..`); + fs.writeFileSync(contentFilePath, newFileContent, 'utf8'); + return; + } + + // console.log(currentFileContent); + // console.log(currTopicUrl); + // console.log(topicTitle); + // console.log(topicUrlToPathMapping[currTopicUrl]); +}); diff --git a/package.json b/package.json index 257034b1d..dea093918 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "upgrade": "ncu -u", "roadmap-links": "node bin/roadmap-links.cjs", "roadmap-dirs": "node bin/roadmap-dirs.cjs", + "roadmap-content": "node bin/roadmap-content.cjs", "best-practice-dirs": "node bin/best-practice-dirs.cjs", "test:e2e": "playwright test" }, diff --git a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/100-changing-user-behavior/100-help-user-think-about-their-action.md b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/100-changing-user-behavior/100-help-user-think-about-their-action.md index fe2f16dd0..e94300a5b 100644 --- a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/100-changing-user-behavior/100-help-user-think-about-their-action.md +++ b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/100-changing-user-behavior/100-help-user-think-about-their-action.md @@ -1 +1 @@ -# Help user think about their action \ No newline at end of file +# Help User think about Their Action \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/100-changing-user-behavior/101-educate-and-encourage-user.md b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/100-changing-user-behavior/101-educate-and-encourage-user.md index be38d2605..4348935ce 100644 --- a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/100-changing-user-behavior/101-educate-and-encourage-user.md +++ b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/100-changing-user-behavior/101-educate-and-encourage-user.md @@ -1 +1 @@ -# Educate and encourage user \ No newline at end of file +# Educate and Encourage User \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/100-changing-user-behavior/index.md b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/100-changing-user-behavior/index.md index efa409207..aa0d2f1b8 100644 --- a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/100-changing-user-behavior/index.md +++ b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/100-changing-user-behavior/index.md @@ -1 +1 @@ -# Changing user behavior \ No newline at end of file +# Support Conscious Action \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/101-cheating/101-make-it-incidental.md b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/101-cheating/101-make-it-incidental.md index b3b6622ca..42a9da47c 100644 --- a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/101-cheating/101-make-it-incidental.md +++ b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/101-cheating/101-make-it-incidental.md @@ -1 +1 @@ -# Make it incidental \ No newline at end of file +# Make it Incidental \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/101-cheating/102-automate-act-of-repition.md b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/101-cheating/102-automate-act-of-repition.md index 0504d2489..6108cba1c 100644 --- a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/101-cheating/102-automate-act-of-repition.md +++ b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/101-cheating/102-automate-act-of-repition.md @@ -1 +1 @@ -# Automate act of repition \ No newline at end of file +# Automate the Act of Repetition \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/100-help-user-avoiding-the-cue.md b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/100-help-user-avoiding-the-cue.md index be2856148..a41712125 100644 --- a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/100-help-user-avoiding-the-cue.md +++ b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/100-help-user-avoiding-the-cue.md @@ -1 +1 @@ -# Help user avoiding the cue \ No newline at end of file +# Help User Avoiding the Cue \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/101-replace-the-routine.md b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/101-replace-the-routine.md index fbcb52d57..e509c7324 100644 --- a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/101-replace-the-routine.md +++ b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/101-replace-the-routine.md @@ -1 +1 @@ -# Replace the routine \ No newline at end of file +# Replace the Routine \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/102-use-consciousness-to-interfere.md b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/102-use-consciousness-to-interfere.md index c0642e268..4256bb8a7 100644 --- a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/102-use-consciousness-to-interfere.md +++ b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/102-use-consciousness-to-interfere.md @@ -1 +1 @@ -# Use consciousness to interfere \ No newline at end of file +# Use Consciousness to Interfere \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/103-mindfulness-to-avoid-acting-on-the-cue.md b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/103-mindfulness-to-avoid-acting-on-the-cue.md index cd88fb2f2..6f505553b 100644 --- a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/103-mindfulness-to-avoid-acting-on-the-cue.md +++ b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/103-mindfulness-to-avoid-acting-on-the-cue.md @@ -1 +1 @@ -# Mindfulness to avoid acting on the cue \ No newline at end of file +# Mindfulness to Avoid Acting on the Cue \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/104-crowd-out-old-habit-with-new-behavior.md b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/104-crowd-out-old-habit-with-new-behavior.md index 02ed01ebc..8bc170c07 100644 --- a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/104-crowd-out-old-habit-with-new-behavior.md +++ b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/existing-behavior/104-crowd-out-old-habit-with-new-behavior.md @@ -1 +1 @@ -# Crowd out old habit with new behavior \ No newline at end of file +# Crowd Out Old Habit with New Behavior \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/index.md b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/index.md index 368d66ca9..dd1c190d5 100644 --- a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/index.md +++ b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/102-make-or-change-habbits/index.md @@ -1 +1 @@ -# Make or change habbits \ No newline at end of file +# Make or Change Habbits \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/classifying-behavior/100-bj-frogg-behavior-grid.md b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/classifying-behavior/100-bj-frogg-behavior-grid.md index cafcf890e..b723c08df 100644 --- a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/classifying-behavior/100-bj-frogg-behavior-grid.md +++ b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/classifying-behavior/100-bj-frogg-behavior-grid.md @@ -1 +1 @@ -# BJ Fogg's Behavior Model \ No newline at end of file +# BJ Fogg’s Behavior Grid \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/making-users-addicted/100-nir-eyal-hook-model.md b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/making-users-addicted/100-nir-eyal-hook-model.md index 38c8662df..79727c168 100644 --- a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/making-users-addicted/100-nir-eyal-hook-model.md +++ b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/making-users-addicted/100-nir-eyal-hook-model.md @@ -1 +1 @@ -# Nir eyal hook model \ No newline at end of file +# Nir Eyal’s Hook Model \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/making-users-addicted/101-cue-routine-reward-model.md b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/making-users-addicted/101-cue-routine-reward-model.md index e15b6f5ed..9647c0c72 100644 --- a/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/making-users-addicted/101-cue-routine-reward-model.md +++ b/src/data/roadmaps/ux-design/content/101-behavior-change-strategies/making-users-addicted/101-cue-routine-reward-model.md @@ -1 +1 @@ -# Cue routine reward model \ No newline at end of file +# Cue Routine Reward Model \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/102-understand-the-product/clarify-product/100-target-outcome.md b/src/data/roadmaps/ux-design/content/102-understand-the-product/clarify-product/100-target-outcome.md index 35ad4898b..ae8c3666c 100644 --- a/src/data/roadmaps/ux-design/content/102-understand-the-product/clarify-product/100-target-outcome.md +++ b/src/data/roadmaps/ux-design/content/102-understand-the-product/clarify-product/100-target-outcome.md @@ -1 +1 @@ -# Target outcome \ No newline at end of file +# Target Outcome \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/102-understand-the-product/clarify-product/101-target-actor.md b/src/data/roadmaps/ux-design/content/102-understand-the-product/clarify-product/101-target-actor.md index b79562ddc..6eb45c893 100644 --- a/src/data/roadmaps/ux-design/content/102-understand-the-product/clarify-product/101-target-actor.md +++ b/src/data/roadmaps/ux-design/content/102-understand-the-product/clarify-product/101-target-actor.md @@ -1 +1 @@ -# Target actor \ No newline at end of file +# Target Actor \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/102-understand-the-product/clarify-product/102-target-action.md b/src/data/roadmaps/ux-design/content/102-understand-the-product/clarify-product/102-target-action.md index 1944b2752..b66a8f07f 100644 --- a/src/data/roadmaps/ux-design/content/102-understand-the-product/clarify-product/102-target-action.md +++ b/src/data/roadmaps/ux-design/content/102-understand-the-product/clarify-product/102-target-action.md @@ -1 +1 @@ -# Target action \ No newline at end of file +# Target Action \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/102-understand-the-product/define-target-users/100-create-user-personas.md b/src/data/roadmaps/ux-design/content/102-understand-the-product/define-target-users/100-create-user-personas.md index 1fb0270db..83748225c 100644 --- a/src/data/roadmaps/ux-design/content/102-understand-the-product/define-target-users/100-create-user-personas.md +++ b/src/data/roadmaps/ux-design/content/102-understand-the-product/define-target-users/100-create-user-personas.md @@ -1 +1 @@ -# Create user personas \ No newline at end of file +# Create User Personas \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/102-understand-the-product/existing-business-model/100-business-model-canvas.md b/src/data/roadmaps/ux-design/content/102-understand-the-product/existing-business-model/100-business-model-canvas.md index b5ac2a2af..364f7e4dd 100644 --- a/src/data/roadmaps/ux-design/content/102-understand-the-product/existing-business-model/100-business-model-canvas.md +++ b/src/data/roadmaps/ux-design/content/102-understand-the-product/existing-business-model/100-business-model-canvas.md @@ -1 +1 @@ -# Business model canvas \ No newline at end of file +# Business Model Canvas \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/102-understand-the-product/existing-business-model/101-lean-canvas.md b/src/data/roadmaps/ux-design/content/102-understand-the-product/existing-business-model/101-lean-canvas.md index 4be9d66ea..ee03d59df 100644 --- a/src/data/roadmaps/ux-design/content/102-understand-the-product/existing-business-model/101-lean-canvas.md +++ b/src/data/roadmaps/ux-design/content/102-understand-the-product/existing-business-model/101-lean-canvas.md @@ -1 +1 @@ -# Lean canvas \ No newline at end of file +# Lean Canvas \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/102-understand-the-product/index.md b/src/data/roadmaps/ux-design/content/102-understand-the-product/index.md index 3c6aaea70..78cc59bf0 100644 --- a/src/data/roadmaps/ux-design/content/102-understand-the-product/index.md +++ b/src/data/roadmaps/ux-design/content/102-understand-the-product/index.md @@ -1 +1 @@ -# Understand the product \ No newline at end of file +# Understanding the Product \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/102-understand-the-product/new-business-model/100-business-model-inspirator.md b/src/data/roadmaps/ux-design/content/102-understand-the-product/new-business-model/100-business-model-inspirator.md index 9da6aa2c4..efd044d07 100644 --- a/src/data/roadmaps/ux-design/content/102-understand-the-product/new-business-model/100-business-model-inspirator.md +++ b/src/data/roadmaps/ux-design/content/102-understand-the-product/new-business-model/100-business-model-inspirator.md @@ -1 +1 @@ -# Business model inspirator \ No newline at end of file +# Business Model Inspirator \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/102-understand-the-product/new-business-model/101-competitor-analysis.md b/src/data/roadmaps/ux-design/content/102-understand-the-product/new-business-model/101-competitor-analysis.md index 7914fb3c0..91ad9321e 100644 --- a/src/data/roadmaps/ux-design/content/102-understand-the-product/new-business-model/101-competitor-analysis.md +++ b/src/data/roadmaps/ux-design/content/102-understand-the-product/new-business-model/101-competitor-analysis.md @@ -1 +1 @@ -# Competitor analysis \ No newline at end of file +# Competitor Analysis \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/102-understand-the-product/new-business-model/102-five-forces-model.md b/src/data/roadmaps/ux-design/content/102-understand-the-product/new-business-model/102-five-forces-model.md index 8653fc95d..524c97a8f 100644 --- a/src/data/roadmaps/ux-design/content/102-understand-the-product/new-business-model/102-five-forces-model.md +++ b/src/data/roadmaps/ux-design/content/102-understand-the-product/new-business-model/102-five-forces-model.md @@ -1 +1 @@ -# Five forces model \ No newline at end of file +# Five Forces Model \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/102-understand-the-product/new-business-model/103-swot-analysis.md b/src/data/roadmaps/ux-design/content/102-understand-the-product/new-business-model/103-swot-analysis.md index 9bfb0ac7a..ff9b4dde4 100644 --- a/src/data/roadmaps/ux-design/content/102-understand-the-product/new-business-model/103-swot-analysis.md +++ b/src/data/roadmaps/ux-design/content/102-understand-the-product/new-business-model/103-swot-analysis.md @@ -1 +1 @@ -# Swot analysis \ No newline at end of file +# SWOT Analysis \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/103-conceptual-design/create-product-backlog/100-user-stories.md b/src/data/roadmaps/ux-design/content/103-conceptual-design/create-product-backlog/100-user-stories.md index c066936fc..5fc1ebe2d 100644 --- a/src/data/roadmaps/ux-design/content/103-conceptual-design/create-product-backlog/100-user-stories.md +++ b/src/data/roadmaps/ux-design/content/103-conceptual-design/create-product-backlog/100-user-stories.md @@ -1 +1 @@ -# User stories \ No newline at end of file +# User Stories \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/103-conceptual-design/deliverables/100-custom-experience-map.md b/src/data/roadmaps/ux-design/content/103-conceptual-design/deliverables/100-custom-experience-map.md index db62d0f5f..180845e67 100644 --- a/src/data/roadmaps/ux-design/content/103-conceptual-design/deliverables/100-custom-experience-map.md +++ b/src/data/roadmaps/ux-design/content/103-conceptual-design/deliverables/100-custom-experience-map.md @@ -1 +1 @@ -# Custom experience map \ No newline at end of file +# Customer Experience Map by Mel Edwards \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/103-conceptual-design/deliverables/101-simple-flowchart.md b/src/data/roadmaps/ux-design/content/103-conceptual-design/deliverables/101-simple-flowchart.md index 467a8b84d..c1eeb6acd 100644 --- a/src/data/roadmaps/ux-design/content/103-conceptual-design/deliverables/101-simple-flowchart.md +++ b/src/data/roadmaps/ux-design/content/103-conceptual-design/deliverables/101-simple-flowchart.md @@ -1 +1 @@ -# Simple flowchart \ No newline at end of file +# Simple Flowchart \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/103-conceptual-design/deliverables/102-event-driven-process-chain-model.md b/src/data/roadmaps/ux-design/content/103-conceptual-design/deliverables/102-event-driven-process-chain-model.md index 77345a8c5..1a8d69972 100644 --- a/src/data/roadmaps/ux-design/content/103-conceptual-design/deliverables/102-event-driven-process-chain-model.md +++ b/src/data/roadmaps/ux-design/content/103-conceptual-design/deliverables/102-event-driven-process-chain-model.md @@ -1 +1 @@ -# Event driven process chain model \ No newline at end of file +# Event-Driven Process Chain Model (EPC) \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/103-conceptual-design/deliverables/103-business-process-model-and-notation.md b/src/data/roadmaps/ux-design/content/103-conceptual-design/deliverables/103-business-process-model-and-notation.md index 51b645255..49b2691ee 100644 --- a/src/data/roadmaps/ux-design/content/103-conceptual-design/deliverables/103-business-process-model-and-notation.md +++ b/src/data/roadmaps/ux-design/content/103-conceptual-design/deliverables/103-business-process-model-and-notation.md @@ -1 +1 @@ -# Business process model and notation \ No newline at end of file +# Business Process Model and Notation (BPMN) \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/103-conceptual-design/index.md b/src/data/roadmaps/ux-design/content/103-conceptual-design/index.md index 58c036c0f..214be8425 100644 --- a/src/data/roadmaps/ux-design/content/103-conceptual-design/index.md +++ b/src/data/roadmaps/ux-design/content/103-conceptual-design/index.md @@ -1 +1 @@ -# Conceptual design \ No newline at end of file +# Conceptual Design \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/100-keep-it-short-simple.md b/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/100-keep-it-short-simple.md index f6886c97b..d1c3cf2f4 100644 --- a/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/100-keep-it-short-simple.md +++ b/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/100-keep-it-short-simple.md @@ -1 +1 @@ -# Keep it short simple \ No newline at end of file +# In general, Keep it Short and Simple \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/101-make-it-easy.md b/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/101-make-it-easy.md index 13445cd8c..d4974a588 100644 --- a/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/101-make-it-easy.md +++ b/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/101-make-it-easy.md @@ -1 +1 @@ -# Make it easy \ No newline at end of file +# Make it Easy to Understand, Easy to Complete \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/102-make-progress-visible.md b/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/102-make-progress-visible.md index 3da65c83e..8812e2930 100644 --- a/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/102-make-progress-visible.md +++ b/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/102-make-progress-visible.md @@ -1 +1 @@ -# Make progress visible \ No newline at end of file +# Make Progress Visible to User \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/103-make-progress-meaningful-reward-user.md b/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/103-make-progress-meaningful-reward-user.md index 13945d249..84a5a32d9 100644 --- a/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/103-make-progress-meaningful-reward-user.md +++ b/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/103-make-progress-meaningful-reward-user.md @@ -1 +1 @@ -# Make progress meaningful reward user \ No newline at end of file +# Make Progress Meaningful in order to Reward User \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/104-make-successful-completion-clearly-visible.md b/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/104-make-successful-completion-clearly-visible.md index 09031e413..1c8f84a79 100644 --- a/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/104-make-successful-completion-clearly-visible.md +++ b/src/data/roadmaps/ux-design/content/103-conceptual-design/things-to-lookout-for/104-make-successful-completion-clearly-visible.md @@ -1 +1 @@ -# Make successful completion clearly visible \ No newline at end of file +# Make Successful Completion Clearly Visible \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/104-prototyping/100-good-layout-rules.md b/src/data/roadmaps/ux-design/content/104-prototyping/100-good-layout-rules.md index 3be848f5b..0464edfb4 100644 --- a/src/data/roadmaps/ux-design/content/104-prototyping/100-good-layout-rules.md +++ b/src/data/roadmaps/ux-design/content/104-prototyping/100-good-layout-rules.md @@ -1 +1 @@ -# Good layout rules \ No newline at end of file +# Good Layout Rules \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/104-prototyping/index.md b/src/data/roadmaps/ux-design/content/104-prototyping/index.md index 6f0dec51d..164272381 100644 --- a/src/data/roadmaps/ux-design/content/104-prototyping/index.md +++ b/src/data/roadmaps/ux-design/content/104-prototyping/index.md @@ -1 +1 @@ -# Prototyping \ No newline at end of file +# ProtoTyping \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/100-call-to-action.md b/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/100-call-to-action.md index 8f00e2698..f76d36caf 100644 --- a/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/100-call-to-action.md +++ b/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/100-call-to-action.md @@ -1 +1 @@ -# Call to action \ No newline at end of file +# Call to Action \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/101-status-reports.md b/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/101-status-reports.md index bf5910dd2..a48775d46 100644 --- a/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/101-status-reports.md +++ b/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/101-status-reports.md @@ -1 +1 @@ -# Status reports \ No newline at end of file +# Status Reports \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/102-how-to-tips.md b/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/102-how-to-tips.md index 05a6e064e..d076117aa 100644 --- a/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/102-how-to-tips.md +++ b/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/102-how-to-tips.md @@ -1 +1 @@ -# How to tips \ No newline at end of file +# How-to-Tips \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/103-reminders-planning-prompts.md b/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/103-reminders-planning-prompts.md index aac1ee626..a0d5d1318 100644 --- a/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/103-reminders-planning-prompts.md +++ b/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/103-reminders-planning-prompts.md @@ -1 +1 @@ -# Reminders planning prompts \ No newline at end of file +# Simple Reminders and Planning Prompts \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/104-decision-making-support.md b/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/104-decision-making-support.md index c031de745..748971840 100644 --- a/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/104-decision-making-support.md +++ b/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/104-decision-making-support.md @@ -1 +1 @@ -# Decision making support \ No newline at end of file +# Decision-Making Support \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/105-behavior-change-games.md b/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/105-behavior-change-games.md index fbb4f6432..1b8a76601 100644 --- a/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/105-behavior-change-games.md +++ b/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/105-behavior-change-games.md @@ -1 +1 @@ -# Behavior change games \ No newline at end of file +# Behavior Change Games \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/109-social-sharing.md b/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/109-social-sharing.md index 17d44b3f0..e09a7280c 100644 --- a/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/109-social-sharing.md +++ b/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/109-social-sharing.md @@ -1 +1 @@ -# Social sharing \ No newline at end of file +# Social Sharing \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/110-goal-trackers.md b/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/110-goal-trackers.md index 8fa5adc91..42df06056 100644 --- a/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/110-goal-trackers.md +++ b/src/data/roadmaps/ux-design/content/104-prototyping/ux-patterns/110-goal-trackers.md @@ -1 +1 @@ -# Goal trackers \ No newline at end of file +# Goal Trackers \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/104-prototyping/wireframing/101-adobe-xd.md b/src/data/roadmaps/ux-design/content/104-prototyping/wireframing/101-adobe-xd.md index e061b678c..3c4fa9aad 100644 --- a/src/data/roadmaps/ux-design/content/104-prototyping/wireframing/101-adobe-xd.md +++ b/src/data/roadmaps/ux-design/content/104-prototyping/wireframing/101-adobe-xd.md @@ -1 +1 @@ -# Adobe xd \ No newline at end of file +# Adobe XD \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/create-urgency/100-avoid-temporal-myopia.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/create-urgency/100-avoid-temporal-myopia.md index a04ac968c..71aba925b 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/create-urgency/100-avoid-temporal-myopia.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/create-urgency/100-avoid-temporal-myopia.md @@ -1 +1 @@ -# Avoid temporal myopia \ No newline at end of file +# Frame Text to Avoid Temporal Myopia \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/create-urgency/101-remind-of-prior-commitment-to-act.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/create-urgency/101-remind-of-prior-commitment-to-act.md index 3acbc4fa0..b5f2d7503 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/create-urgency/101-remind-of-prior-commitment-to-act.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/create-urgency/101-remind-of-prior-commitment-to-act.md @@ -1 +1 @@ -# Remind of prior commitment to act \ No newline at end of file +# Remind of Prior Commitment to Act \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/create-urgency/102-make-commitment-to-friends.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/create-urgency/102-make-commitment-to-friends.md index 890b7d7ae..9a140e127 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/create-urgency/102-make-commitment-to-friends.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/create-urgency/102-make-commitment-to-friends.md @@ -1 +1 @@ -# Make commitment to friends \ No newline at end of file +# Make Commitment to Friends \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/create-urgency/103-make-reward-scarce.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/create-urgency/103-make-reward-scarce.md index 41c2f49b4..61ddfa8f9 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/create-urgency/103-make-reward-scarce.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/create-urgency/103-make-reward-scarce.md @@ -1 +1 @@ -# Make reward scarce \ No newline at end of file +# Make Reward Scarce \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-attention/100-tell-user-and-ask.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-attention/100-tell-user-and-ask.md index 64f55cea9..3d8dabf01 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-attention/100-tell-user-and-ask.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-attention/100-tell-user-and-ask.md @@ -1 +1 @@ -# Tell user and ask \ No newline at end of file +# Tell User What the Action is and Ask for it \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-attention/101-make-it-clear-where-to-act.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-attention/101-make-it-clear-where-to-act.md index 3cc421a74..0930c49ad 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-attention/101-make-it-clear-where-to-act.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-attention/101-make-it-clear-where-to-act.md @@ -1 +1 @@ -# Make it clear where to act \ No newline at end of file +# Make it Clear, Where to Act \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-attention/102-clear-the-page-of-distractions.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-attention/102-clear-the-page-of-distractions.md index f1e67c93a..59bef305a 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-attention/102-clear-the-page-of-distractions.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-attention/102-clear-the-page-of-distractions.md @@ -1 +1 @@ -# Clear the page of distractions \ No newline at end of file +# Clear the Page of Distractions \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/100-prime-user-relevant-associations.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/100-prime-user-relevant-associations.md index c7d224ed4..1d661be39 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/100-prime-user-relevant-associations.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/100-prime-user-relevant-associations.md @@ -1 +1 @@ -# Prime user relevant associations \ No newline at end of file +# Prime User-Relevant Associations \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/101-leverage-loss-aversion.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/101-leverage-loss-aversion.md index 63ec69eec..50a48516b 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/101-leverage-loss-aversion.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/101-leverage-loss-aversion.md @@ -1 +1 @@ -# Leverage loss aversion \ No newline at end of file +# Leverage Loss Aversion \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/102-use-peer-comparisons.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/102-use-peer-comparisons.md index 11ed42cf2..f3b6a71f8 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/102-use-peer-comparisons.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/102-use-peer-comparisons.md @@ -1 +1 @@ -# Use peer comparisons \ No newline at end of file +# Use Peer Comparisons \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/103-use-competition.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/103-use-competition.md index 8422f6777..197b7127e 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/103-use-competition.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/103-use-competition.md @@ -1 +1 @@ -# Use competition \ No newline at end of file +# Use Competition \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/104-avoid-cognitive-overhead.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/104-avoid-cognitive-overhead.md index bf8cb1a6b..39bb98c13 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/104-avoid-cognitive-overhead.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/104-avoid-cognitive-overhead.md @@ -1 +1 @@ -# Avoid cognitive overhead \ No newline at end of file +# Avoid Cognitive Overhead \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/105-avoid-choice-overload.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/105-avoid-choice-overload.md index a0c148132..349a732f2 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/105-avoid-choice-overload.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/105-avoid-choice-overload.md @@ -1 +1 @@ -# Avoid choice overload \ No newline at end of file +# Avoid Choice Overload \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/106-avoid-direct-payments.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/106-avoid-direct-payments.md index 04055986a..07969c344 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/106-avoid-direct-payments.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/getting-favorable-conscious-evaluation/106-avoid-direct-payments.md @@ -1 +1 @@ -# Avoid direct payments \ No newline at end of file +# Avoid Direct Payments \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/index.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/index.md index b4c3ab195..eb9de3110 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/index.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/index.md @@ -1 +1 @@ -# Ux best practices \ No newline at end of file +# UX Best Practices \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/make-it-easy-for-users/100-elicit-implementation-intentions.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/make-it-easy-for-users/100-elicit-implementation-intentions.md index e837e4be4..b204c02e6 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/make-it-easy-for-users/100-elicit-implementation-intentions.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/make-it-easy-for-users/100-elicit-implementation-intentions.md @@ -1 +1 @@ -# Elicit implementation intentions \ No newline at end of file +# Elicit Implementation Intentions \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/make-it-easy-for-users/101-default-everything.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/make-it-easy-for-users/101-default-everything.md index 64610e732..1d7a76905 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/make-it-easy-for-users/101-default-everything.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/make-it-easy-for-users/101-default-everything.md @@ -1 +1 @@ -# Default everything \ No newline at end of file +# Default Everything \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/make-it-easy-for-users/102-lessen-the-burden-of-action-info.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/make-it-easy-for-users/102-lessen-the-burden-of-action-info.md index 77a5cf0d3..a643cbb9a 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/make-it-easy-for-users/102-lessen-the-burden-of-action-info.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/make-it-easy-for-users/102-lessen-the-burden-of-action-info.md @@ -1 +1 @@ -# Lessen the burden of action info \ No newline at end of file +# Lessen the Burden of Action/Info. \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/make-it-easy-for-users/103-deploy-peer-comparisons.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/make-it-easy-for-users/103-deploy-peer-comparisons.md index a687a64ad..fbbe02a9e 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/make-it-easy-for-users/103-deploy-peer-comparisons.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/make-it-easy-for-users/103-deploy-peer-comparisons.md @@ -1 +1 @@ -# Deploy peer comparisons \ No newline at end of file +# Deploy Peer Comparisons \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/positive-intuitive-reaction/100-make-ui-professional-and-beautiful.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/positive-intuitive-reaction/100-make-ui-professional-and-beautiful.md index dcf476e6f..44be5b842 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/positive-intuitive-reaction/100-make-ui-professional-and-beautiful.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/positive-intuitive-reaction/100-make-ui-professional-and-beautiful.md @@ -1 +1 @@ -# Make ui professional and beautiful \ No newline at end of file +# Make UI Professional and Beautiful \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/positive-intuitive-reaction/101-deploy-social-proof.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/positive-intuitive-reaction/101-deploy-social-proof.md index 949c0c27f..de1f48c39 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/positive-intuitive-reaction/101-deploy-social-proof.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/positive-intuitive-reaction/101-deploy-social-proof.md @@ -1 +1 @@ -# Deploy social proof \ No newline at end of file +# Deploy Social Proof \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/positive-intuitive-reaction/102-deploy-strong-subject-authority.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/positive-intuitive-reaction/102-deploy-strong-subject-authority.md index 0cff5c650..b2fdbee6e 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/positive-intuitive-reaction/102-deploy-strong-subject-authority.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/positive-intuitive-reaction/102-deploy-strong-subject-authority.md @@ -1 +1 @@ -# Deploy strong subject authority \ No newline at end of file +# Deploy Strong Authority on Subject \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/105-ux-best-practices/positive-intuitive-reaction/103-be-authentic-and-personal.md b/src/data/roadmaps/ux-design/content/105-ux-best-practices/positive-intuitive-reaction/103-be-authentic-and-personal.md index daed4544d..7ac8e2bbe 100644 --- a/src/data/roadmaps/ux-design/content/105-ux-best-practices/positive-intuitive-reaction/103-be-authentic-and-personal.md +++ b/src/data/roadmaps/ux-design/content/105-ux-best-practices/positive-intuitive-reaction/103-be-authentic-and-personal.md @@ -1 +1 @@ -# Be authentic and personal \ No newline at end of file +# Be Authentic and Personal \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/106-measuring-the-impact/100-gather-lessons-prioritize-integrate.md b/src/data/roadmaps/ux-design/content/106-measuring-the-impact/100-gather-lessons-prioritize-integrate.md index 60f49c08e..69329317b 100644 --- a/src/data/roadmaps/ux-design/content/106-measuring-the-impact/100-gather-lessons-prioritize-integrate.md +++ b/src/data/roadmaps/ux-design/content/106-measuring-the-impact/100-gather-lessons-prioritize-integrate.md @@ -1 +1 @@ -# Gather lessons prioritize integrate \ No newline at end of file +# Gather Lessons Learned, \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/106-measuring-the-impact/index.md b/src/data/roadmaps/ux-design/content/106-measuring-the-impact/index.md index a9c151315..d891bac46 100644 --- a/src/data/roadmaps/ux-design/content/106-measuring-the-impact/index.md +++ b/src/data/roadmaps/ux-design/content/106-measuring-the-impact/index.md @@ -1 +1 @@ -# Measuring the impact \ No newline at end of file +# Measuring the Impact \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/106-measuring-the-impact/testing/100-incremental-ab-testing.md b/src/data/roadmaps/ux-design/content/106-measuring-the-impact/testing/100-incremental-ab-testing.md index 2e75c8945..5e920f342 100644 --- a/src/data/roadmaps/ux-design/content/106-measuring-the-impact/testing/100-incremental-ab-testing.md +++ b/src/data/roadmaps/ux-design/content/106-measuring-the-impact/testing/100-incremental-ab-testing.md @@ -1 +1 @@ -# Incremental ab testing \ No newline at end of file +# Incremental A/B Testing \ No newline at end of file diff --git a/src/data/roadmaps/ux-design/content/106-measuring-the-impact/testing/101-multivariate-testing.md b/src/data/roadmaps/ux-design/content/106-measuring-the-impact/testing/101-multivariate-testing.md index e414ad943..01867519f 100644 --- a/src/data/roadmaps/ux-design/content/106-measuring-the-impact/testing/101-multivariate-testing.md +++ b/src/data/roadmaps/ux-design/content/106-measuring-the-impact/testing/101-multivariate-testing.md @@ -1 +1 @@ -# Multivariate testing \ No newline at end of file +# Multivariate Testing \ No newline at end of file