\n
\n {carouselItems.length\n ? carouselItems.map((item, index) => (\n \n ))\n : Array.from(new Array(10)).map((_, index) => (\n \n ))}\n
\n
\n );\n}\n","import React from 'react';\nimport { useAtom } from 'jotai';\nimport { isMobileAtom } from '@atoms/appSettings';\nimport { Stack } from '@mui/material';\nimport { breakpoints, Heading, Text } from '@web-for-marketing/react-ui';\nimport { CustomSectionComponentProps } from '@models/customSection';\nimport { TestimonialCardContent } from './TestimonialCard';\nimport { TestimonialCarousel } from '@components/SectionComponents/TestimonialCarousel/TestimonialCarousel';\n\nconst testimonialCards: TestimonialCardContent[] = [\n {\n statistic: '30%',\n statisticDescription: 'savings on every mile',\n author: {\n name: 'Christian Reisch',\n title: 'Co-owner',\n quote: 'We love Geotab! When I talk to other Domino’s Pizza franchisees and they ask me how it’s going with our fleet, I tell them I cannot imagine having these cars without the technology installed. If you get a fleet of cars, then you need to have Geotab.',\n },\n company: 'Team Goliath Inc. d/b/a Domino’s Pizza',\n button: {\n text: 'Read more',\n link: 'https://www.geotab.com/case-study/dominos-team-goliath/',\n },\n },\n {\n statistic: '$1.3M',\n statisticDescription: 'in potential savings with fleet electrification',\n author: {\n name: 'Yves Mador',\n title: 'Senior Officer',\n quote: 'The EVSA was a very valuable exercise. Thanks to the analysis, departments have more confidence in acquiring EVs.',\n },\n company: 'Transportation and Alternative Fuels, Natural Resources Canada',\n button: {\n text: 'Read more',\n link: 'https://www.geotab.com/case-study/natural-resources-canada/',\n },\n },\n {\n statistic: '30%',\n statisticDescription: 'reduction in insurance premium costs',\n author: {\n name: 'Leslie Tarble',\n title: 'President and Co-Owner',\n quote: 'As a small business, the research and experience that they have saved me countless hours and allows me to make informed and quick decisions. I truly value and trust their expertise in the space.',\n },\n company: '3 Sisters Logistics',\n button: {\n text: 'Read more',\n link: 'https://www.geotab.com/case-study/3-sisters-logistics/',\n },\n },\n {\n statistic: '90K',\n statisticDescription: 'annual reduction in fuel and maintenance costs',\n author: {\n name: 'Eric Gardner',\n title: 'Motor Pool Manager',\n quote: 'Our governor limits idling, but we couldn’t know if people were doing it. I was really surprised at how much idling our drivers were doing and how easy it was to affect change.',\n },\n company: 'State of Utah',\n button: {\n text: 'Read more',\n link: 'https://www.geotab.com/white-paper/rolling-out-telematics-in-government-fleet/',\n },\n },\n {\n statistic: '59%',\n statisticDescription: 'reduction in idling costs',\n author: {\n name: 'Jonathan Hamilton',\n title: 'Director of Fleet Safety and Compliance',\n quote: 'We’re aligned on our overall values which makes it really easy and enjoyable to work with Geotab. They have a smart team who are always willing to help, and we appreciate the strong partnership.',\n },\n company: 'California Freight',\n button: {\n text: 'Read more',\n link: 'https://www.geotab.com/case-study/california-freight/',\n },\n },\n {\n statistic: '40%',\n statisticDescription: 'reduction in speeding',\n author: {\n name: 'Michael Kidwell',\n title: 'President of Branch Operations',\n quote: 'Geotab makes my day work!',\n },\n company: 'Wiseway Supply Ltd.',\n button: {\n text: 'Read more',\n link: 'https://www.geotab.com/case-study/wiseway-supply/',\n },\n },\n {\n statistic: '90%',\n statisticDescription: 'reduction in high risk drivers',\n author: {\n name: 'Deniz Tuna',\n title: 'Sales and Fleet Health and Safety Manager',\n quote: 'MyGeotab’s unified view of individual and organizational data and insights helps PepsiCo TR proactively manage risks, improve our metrics, elevate safety culture and promote care for our drivers and other road users.',\n },\n company: 'PepsiCo TR',\n button: {\n text: 'Read more',\n link: 'https://www.geotab.com/uk/case-study/pepsico/',\n },\n },\n {\n statistic: '71%',\n statisticDescription: 'improvement in driver safety performance',\n author: {\n name: 'Ken Venzke',\n title: 'Division Manager',\n quote: 'We\\'ve improved our driver score by 71% over the last 18 months by utilizing Geotab\\'s technology. Having this technology has done more than just keep us safe, it\\'s kept us cutting-edge in a very competitive industry.',\n },\n company: 'Wright Tree Services',\n button: {\n text: 'Read more',\n link: 'https://www.geotab.com/case-study/wright-tree-services/',\n },\n },\n {\n statistic: '70K',\n statisticDescription: 'saved on fuel and maintenance',\n author: {\n name: 'Dan Haseman',\n title: 'Logistics Coordinator',\n quote: 'One of the top challenges for us was to gather all the information we were getting and build that into usable and quantifiable information that could help us make better business decisions.',\n },\n company: 'Solaris Oilfield Infrastructure',\n button: {\n text: 'Read more',\n link: 'https://www.geotab.com/case-study/solaris-oilfield-infrastructure-integrated-fleet/',\n },\n },\n {\n statistic: '700',\n statisticDescription: 'vehicles up from 125 in four years',\n author: {\n name: 'Kevin Henry',\n title: 'Director of Fleet',\n quote: 'We were using another telematics provider when I came on board, but I really didn’t like their program…I wanted to make a switch. With Geotab, we have really great data, and we want to be able to analyze it in specific ways.',\n },\n company: 'Centerline Communications',\n button: {\n text: 'Read more',\n link: 'https://www.geotab.com/case-study/centerline-communications/',\n },\n },\n];\n\nconst classes = {\n testimonialCarouselContainer: {\n paddingTop: '4rem',\n paddingBottom: '2rem',\n [`@media (max-width: ${breakpoints.md})`]: {\n paddingTop: '3rem',\n },\n },\n} as const;\n\nexport default function TestimonialCarouselCustomSection({ headerSection }: CustomSectionComponentProps): JSX.Element {\n const [isMobile] = useAtom(isMobileAtom);\n return (\n