import React from 'react'; import { useNavigate } from 'react-router-dom'; import Wrapper from '../layout/Wrapper'; import PageTitle from './shared/PageTitle'; import ProcessCard from './shared/ProcessCard'; import ProcessCardsWrapper from './shared/ProcessCardWrapper'; const _data = { cards: [ { id: 0, title: 'BI Healthcare Solution System', imgUrl: 'https://lh6.googleusercontent.com/D7N87i3udAln4YBp5SbaSI-9r2pVnnT5K2VT6p0G3dQanVgTMC2tdgz71PWOYco-7yQ=w2400', alt: 'BI Healthcare Solution System', link: '/casestudybi', }, { id: 1, title: 'Resource Planning System', imgUrl: 'https://lh5.googleusercontent.com/HLOh5coHfcEgDuftj1pOA9f1865xiIom5vyxTWNMKqMiivxL8Lg4c9ACzbfYYUdeuqQ=w2400', alt: 'Resource Planning System', link: '/casestudyresource', }, { id: 2, title: 'Ticketing System for Passengers', imgUrl: 'https://lh5.googleusercontent.com/f_G0H0C_qLHhsU8PBj6uTkNigzKiXzd24B_pgJ6UqVmBKlU2Lyxv2r5lf6uvY9d_0PY=w2400', alt: 'Ticketing System for Passengers', link: '/casestudyticketing', }, ], }; function PortfolioSection({heading,cta}) { const linkTo = useNavigate(); return (
{_data.cards.map((item, index) => ( {item.alt}

{item.title}

))}
); } export default PortfolioSection;