Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

Portfolio.jsx 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. import { useState, useEffect } from 'react';
  2. import axios from 'axios';
  3. import CasesSection from './../components/CasesSection';
  4. import Contact from '../components/shared/Contact';
  5. import Animation_Diligent from '../assets/animation_diligent.webm';
  6. import Wrapper from '../layout/Wrapper';
  7. import PageTitle from '../components/shared/PageTitle';
  8. import PortfolioCard from '../components/PortfolioCard';
  9. import Grid from '../layout/Grid';
  10. import CardsGrid from '../components/CardsGrid';
  11. import PageLayout from '../layout/PageLayout';
  12. import StrataThumb from './../assets/images/CaseStudy/StrataThumb.jpg';
  13. //import useAnalytics from '../hooks/useAnalytics';
  14. const _data = {
  15. heading: {
  16. heading: 'Case Studies',
  17. subheading: 'Our Work',
  18. paragraph:
  19. "Our philosophy is based on the idea of ​​innovation. We work tirelessly to provide useful solutions that are consistent with the strategic priorities of our clients. That is the key that differentiates Diligent Software's portfolio of services: our relentless motivation to create value for companies that rely on digital solutions.",
  20. },
  21. cards: [
  22. {
  23. id: 0,
  24. title: 'BI Healthcare Solution System',
  25. imgUrl:
  26. 'https://lh6.googleusercontent.com/D7N87i3udAln4YBp5SbaSI-9r2pVnnT5K2VT6p0G3dQanVgTMC2tdgz71PWOYco-7yQ=w2400',
  27. alt: 'BI Healthcare Solution System',
  28. link: '/casestudybi',
  29. },
  30. {
  31. id: 1,
  32. title: 'Resource Planning System',
  33. imgUrl:
  34. 'https://lh5.googleusercontent.com/HLOh5coHfcEgDuftj1pOA9f1865xiIom5vyxTWNMKqMiivxL8Lg4c9ACzbfYYUdeuqQ=w2400',
  35. alt: 'Resource Planning System',
  36. link: '/casestudyresource',
  37. },
  38. {
  39. id: 2,
  40. title: 'Ticketing System for Passengers',
  41. imgUrl:
  42. 'https://lh5.googleusercontent.com/f_G0H0C_qLHhsU8PBj6uTkNigzKiXzd24B_pgJ6UqVmBKlU2Lyxv2r5lf6uvY9d_0PY=w2400',
  43. alt: 'Ticketing System for Passengers',
  44. link: '/casestudyticketing',
  45. },
  46. {
  47. id: 3,
  48. title: 'Financial Engine',
  49. imgUrl:
  50. 'https://lh3.googleusercontent.com/n-vcF1h8o4o3_CWZXoT-BQDLGFjL3_wt1twsDajycp8IhiiA2UkBoecsGd-ly_LRxJI=w2400',
  51. alt: 'Financial Engine',
  52. link: '/casestudyfinancial',
  53. },
  54. {
  55. id: 4,
  56. title: 'Centralized Monitoring System',
  57. imgUrl:
  58. 'https://lh4.googleusercontent.com/CwrSwX4UVcU-nYhEk4wWqsK8TUJbt881kVx2i4ryXYJ3xIsN8d7F1bY0qO_0thHCbBM=w2400',
  59. alt: 'Centralized Monitoring System',
  60. link: '/casestudycentralized',
  61. },
  62. {
  63. id: 5,
  64. title: 'Health Tracking Software',
  65. imgUrl: 'https://i.postimg.cc/HsKGcXVv/Strata-Thumb.jpg',
  66. alt: 'Health Tracking Software',
  67. link: '/casestudystrata',
  68. },
  69. ],
  70. };
  71. export default function Portfolio() {
  72. useEffect(() => {
  73. document.title = 'Case Studies';
  74. }, []);
  75. //useAnalytics();
  76. return (
  77. <PageLayout>
  78. <div className="flex flex-col gap-90p pt-32">
  79. <Wrapper>
  80. <h1 className="hidden">Our Work - Case Studies</h1>
  81. <div className="flex flex-col gap-8p">
  82. <PageTitle
  83. heading={_data.heading.heading}
  84. subheading={_data.heading.subheading}
  85. left
  86. color
  87. />
  88. <p className="paragraph">{_data.heading.paragraph}</p>
  89. </div>
  90. </Wrapper>
  91. <Wrapper>
  92. <CardsGrid data={_data.cards} />
  93. </Wrapper>
  94. </div>
  95. </PageLayout>
  96. );
  97. }