diff --git a/src/assets/images/angularjs.svg b/src/assets/images/angularjs.svg new file mode 100644 index 0000000..e365673 --- /dev/null +++ b/src/assets/images/angularjs.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/assets/images/reactjs.svg b/src/assets/images/reactjs.svg new file mode 100644 index 0000000..4c7aa8a --- /dev/null +++ b/src/assets/images/reactjs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/components/AllAppsMenu/index.jsx b/src/components/AllAppsMenu/index.jsx index df94c85..a93b51f 100644 --- a/src/components/AllAppsMenu/index.jsx +++ b/src/components/AllAppsMenu/index.jsx @@ -48,7 +48,7 @@ const AllAppsMenu = () => {
-
ALL APPS
+
Micro Frontend
    {APPS.map((app) => (
  • diff --git a/src/constants/apps.js b/src/constants/apps.js index b45b79e..4272360 100644 --- a/src/constants/apps.js +++ b/src/constants/apps.js @@ -1,6 +1,8 @@ /** * Config for the All Apps menu. */ +import appReactIcon from "../assets/images/reactjs.svg"; +import appAngularIcon from "../assets/images/angularjs.svg"; import appTaasIcon from "../assets/images/app-taas.svg"; import appSkillSearchIcon from "../assets/images/app-skill-search.svg"; import appProjectsIcon from "../assets/images/app-projects.svg"; @@ -9,32 +11,48 @@ import appName1Icon from "../assets/images/app-name-1.svg"; import appName2Icon from "../assets/images/app-name-2.svg"; export const APPS = [ + { + title: "React Example", + icon: appReactIcon, + path: "/micro-frontends-react-route", + menu: [ + { title: "Home", path: "/micro-frontends-react-route" }, + ], + }, + { + title: "Angular Example", + icon: appAngularIcon, + path: "/micro-frontends-angular-route", + menu: [ + { title: "Home", path: "/micro-frontends-angular-route" }, + ], + }, { title: "TaaS", icon: appTaasIcon, - path: "/micro-frontends-react-route", + path: "/taas", menu: [ - { title: "My Teams", path: "/micro-frontends-react-route/myteam" }, - { title: "Feedback", path: "/micro-frontends-react-route/feedback" }, - { title: "Invoices", path: "/micro-frontends-react-route/invoices" }, - { title: "Reports", path: "/micro-frontends-react-route/reports" }, + { title: "My Teams", path: "/taas/myteam" }, + { title: "Feedback", path: "/taas/feedback" }, + { title: "Invoices", path: "/taas/invoices" }, + { title: "Reports", path: "/taas/reports" }, ], }, { title: "Skill Search", icon: appSkillSearchIcon, - path: "/micro-frontends-angular-route", + path: "/skills-search", menu: [ - { title: "Search", path: "/micro-frontends-angular-route" }, + { title: "Search", path: "/skills-search" }, { title: "Group", children: [ - { title: "Development", path: "/micro-frontends-angular-route/group/development" }, - { title: "Design", path: "/micro-frontends-angular-route/group/design" }, - { title: "Q&A", path: "/micro-frontends-angular-route/group/qa" }, + { title: "Development", path: "/skills-search/group/development" }, + { title: "Design", path: "/skills-search/group/design" }, + { title: "Q&A", path: "/skills-search/group/qa" }, ], }, - { title: "Data Import", path: "/micro-frontends-angular-route/data-import" }, + { title: "Data Import", path: "/skills/data-import" }, ], }, { @@ -86,5 +104,5 @@ export const APPS = [ }, { title: "App Name Page", path: "/app-path-2/page" }, ], - }, + } ];