You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. import CaseStudy from "./components/CaseStudy";
  2. import About from "./pages/About";
  3. import Careers from "./pages/Careers";
  4. import CaseStudyBI from "./pages/CaseStudyBI";
  5. import CaseStudyCentralized from "./pages/CaseStudyCentralized";
  6. import CaseStudyFinantial from "./pages/CaseStudyFinantial";
  7. import CaseStudyResource from "./pages/CaseStudyResource";
  8. import CaseStudyStrata from "./pages/CaseStudyStrata";
  9. import CaseStudyTicketing from "./pages/CaseStudyTicketing";
  10. import ContactPage from "./pages/ContactPage";
  11. import Home from "./pages/Home";
  12. import Portfolio from "./pages/Portfolio";
  13. import PrivacyPolicy from "./pages/PrivacyPolicy";
  14. import ProcessPage from "./pages/ProcessPage";
  15. import WorkWithUs from "./pages/WorkWithUs";
  16. import EventsTimeline from "./pages/EventsTimeline";
  17. import DiligentLife from "./pages/DiligentLife";
  18. import DiligentMinds from "./pages/DiligentMinds";
  19. const routes = [
  20. {
  21. path: '/',
  22. component: <Home/>,
  23. title: 'Diligent Software',
  24. exact: true,
  25. },
  26. {
  27. path: '/workwithus',
  28. component: <WorkWithUs/>,
  29. title: 'Work with Us',
  30. exact: true,
  31. nav:true
  32. },
  33. {
  34. path: '/portfolio',
  35. component: <Portfolio/>,
  36. title: 'Case Studies',
  37. exact: true,
  38. nav:true
  39. },
  40. {
  41. path: '/process',
  42. component: <ProcessPage />,
  43. title: 'Process',
  44. exact: true,
  45. nav:true,
  46. },
  47. {
  48. path: '/casestudybi',
  49. component: <CaseStudyBI/>,
  50. title: 'BI Healthcare System',
  51. exact: true
  52. },
  53. {
  54. path: '/casestudystrata',
  55. component: <CaseStudyStrata/>,
  56. title: 'Health Tracking Software',
  57. exact: true
  58. },
  59. {
  60. path: '/casestudyfinancial',
  61. component: <CaseStudyFinantial/>,
  62. title: 'Financial Engine',
  63. exact: true
  64. },
  65. {
  66. path: '/casestudyticketing',
  67. component: <CaseStudyTicketing/>,
  68. title: 'Ticketing System for Passengers',
  69. exact: true
  70. },
  71. {
  72. path: '/casestudycentralized',
  73. component: <CaseStudyCentralized/>,
  74. title: 'Centralized Monitoring System',
  75. exact: true
  76. },
  77. {
  78. path: '/casestudyresource',
  79. component: <CaseStudyResource/>,
  80. title: 'Resource Planning System',
  81. exact: true
  82. },
  83. {
  84. path: '/careers',
  85. component: <Careers/>,
  86. title: 'Careers',
  87. exact: true,
  88. nav:true,
  89. drop: [
  90. // enable after we add content
  91. // {
  92. // path:'/diligentlife',
  93. // component: <DiligentLife />,
  94. // title: 'Diligent Life',
  95. // exact: true,
  96. // nav:true,
  97. // },
  98. // {
  99. // path:"/diligentminds",
  100. // component: <DiligentMinds />,
  101. // title: 'Diligent Minds',
  102. // exact: true,
  103. // nav:true,
  104. // },
  105. // {
  106. // path:"/eventstimeline",
  107. // component: <EventsTimeline />,
  108. // title: 'Events Timeline',
  109. // exact: true,
  110. // nav:true,
  111. // },
  112. ],
  113. },
  114. {
  115. path: '/about',
  116. component: <About/>,
  117. title: 'About Us',
  118. exact: true,
  119. nav:true,
  120. },
  121. {
  122. path: '/contact',
  123. component: <ContactPage/>,
  124. title: 'Contact Us',
  125. exact: true,
  126. },
  127. {
  128. path: '/privacypolicy',
  129. component: <PrivacyPolicy/>,
  130. title: 'Privacy Policy',
  131. exact: true
  132. },
  133. ];
  134. export default routes;