import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class MenuService { constructor() { } getMenu(): Array { const menu = [ { path: 'ClientHome', name: 'Data/Info collection' }, { path: 'create-questionnaire', name: 'CreateQuestionnaire' }, { path: 'job-plan-details', name: 'JobPlanDetails' }, { path: 'app-client-detail', name: 'ClientDetails' }, { path: 'questionear', name: 'Questionnaire' }, { path: 'dataCollection', name: 'DataCollection' } ]; return menu; } }