diff --git a/.circleci/config.yml b/.circleci/config.yml index 993da6a..c6c8b7f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -74,6 +74,7 @@ workflows: branches: only: - dev + - challenge-listing-part-1 # Production builds are exectuted only on tagged commits to the # master branch. diff --git a/src/constants/apps.js b/src/constants/apps.js index f1e058b..cbb2455 100644 --- a/src/constants/apps.js +++ b/src/constants/apps.js @@ -5,6 +5,7 @@ import appDocumentationIcon from "../assets/images/learn.svg"; import appTaasIcon from "../assets/images/integrations.svg"; import myteamsIcon from "../assets/images/my-teams.svg"; import myteamsGreenIcon from "../assets/images/my-teams-green.svg"; +import earnIcon from "../assets/images/earn.svg"; /** * Micro-app categories @@ -33,5 +34,16 @@ export const APP_CATEGORIES = [ menu: [] } ] + }, + { + category: "Do", + apps: [ + { + title: "Earn", + icon: earnIcon, + path: "/earn", + menu: [], + } + ] } ];