Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. const routes = [
  17. {
  18. path: '/',
  19. component: <Home/>,
  20. title: 'Diligent Software',
  21. exact: true,
  22. },
  23. {
  24. path: '/workwithus',
  25. component: <WorkWithUs/>,
  26. title: 'Work with Us',
  27. exact: true,
  28. nav:true
  29. },
  30. {
  31. path: '/portfolio',
  32. component: <Portfolio/>,
  33. title: 'Case Studies',
  34. exact: true,
  35. nav:true
  36. },
  37. {
  38. path: '/process',
  39. component: <ProcessPage />,
  40. title: 'Process',
  41. exact: true,
  42. nav:true,
  43. },
  44. {
  45. path: '/casestudybi',
  46. component: <CaseStudyBI/>,
  47. title: 'BI Healthcare System',
  48. exact: true
  49. },
  50. {
  51. path: '/casestudystrata',
  52. component: <CaseStudyStrata/>,
  53. title: 'Health Tracking Software',
  54. exact: true
  55. },
  56. {
  57. path: '/casestudyfinancial',
  58. component: <CaseStudyFinantial/>,
  59. title: 'Financial Engine',
  60. exact: true
  61. },
  62. {
  63. path: '/casestudyticketing',
  64. component: <CaseStudyTicketing/>,
  65. title: 'Ticketing System for Passengers',
  66. exact: true
  67. },
  68. {
  69. path: '/casestudycentralized',
  70. component: <CaseStudyCentralized/>,
  71. title: 'Centralized Monitoring System',
  72. exact: true
  73. },
  74. {
  75. path: '/casestudyresource',
  76. component: <CaseStudyResource/>,
  77. title: 'Resource Planning System',
  78. exact: true
  79. },
  80. {
  81. path: '/careers',
  82. component: <Careers/>,
  83. title: 'Careers',
  84. exact: true,
  85. nav:true,
  86. },
  87. {
  88. path: '/about',
  89. component: <About/>,
  90. title: 'About Us',
  91. exact: true,
  92. nav:true,
  93. },
  94. {
  95. path: '/contact',
  96. component: <ContactPage/>,
  97. title: 'Contact Us',
  98. exact: true,
  99. },
  100. {
  101. path: '/privacypolicy',
  102. component: <PrivacyPolicy/>,
  103. title: 'Privacy Policy',
  104. exact: true
  105. },
  106. ];
  107. export default routes;