| @@ -8,6 +8,7 @@ import PageTitle from './shared/PageTitle'; | |||
| import TestimonialCard from './shared/TestimonialCard'; | |||
| import Boza from './../assets/boza.jpg'; | |||
| import Peter from './../assets/peter1.png'; | |||
| import Nick from './../assets/nick.jpg'; | |||
| import ns from './../assets/ns.png'; | |||
| const _data = { | |||
| @@ -37,6 +38,13 @@ const _data = { | |||
| clientImg: ns, | |||
| alt: 'Niš Ekspres', | |||
| }, | |||
| { | |||
| clientName: 'Nick Pericle', | |||
| paragraph: `We've partnered with the team at Diligent Software for 3 years. We've built over a dozen apps together, and each time we're impressed by Diligent's dedicated approach, and end result. We consider Diligent Software a trusted partner - the trust we share, the flexibility, and the quality we get are just what we need. I can't recommend Diligent enough as a partner.`, | |||
| clientRole: 'VP of Operations @ Profit Optics', | |||
| clientImg: Nick, | |||
| alt: 'Nick', | |||
| }, | |||
| ], | |||
| }; | |||
| @@ -79,6 +87,13 @@ export default function Testimonials({ noTitle }) { | |||
| imageAlt={_data.cards[2].alt} | |||
| paragraph={_data.cards[2].paragraph} | |||
| /> | |||
| <TestimonialCard | |||
| clientName={_data.cards[3].clientName} | |||
| clientRole={_data.cards[3].clientRole} | |||
| clientImg={_data.cards[3].clientImg} | |||
| imageAlt={_data.cards[3].alt} | |||
| paragraph={_data.cards[3].paragraph} | |||
| /> | |||
| </div> | |||
| {/* | |||
| <TestimonialCard/> | |||
| @@ -108,6 +123,13 @@ export default function Testimonials({ noTitle }) { | |||
| imageAlt={_data.cards[2].alt} | |||
| paragraph={_data.cards[2].paragraph} | |||
| /> | |||
| <TestimonialCard | |||
| clientName={_data.cards[3].clientName} | |||
| clientRole={_data.cards[3].clientRole} | |||
| clientImg={_data.cards[3].clientImg} | |||
| imageAlt={_data.cards[3].alt} | |||
| paragraph={_data.cards[3].paragraph} | |||
| /> | |||
| </FMCarousel> | |||
| )} | |||
| </div> | |||