@@ -164,7 +164,7 @@ const deploymentOptions = [
164164const integrations = [
165165 { name: ' GPS Devices' , icon: ' mdi:satellite' },
166166 { name: ' Telematics' , icon: ' mdi:router-wireless' },
167- { name: ' Mobile Apps' , icon: ' mdi:phone' },
167+ { name: ' Mobile Apps' , icon: ' mdi:mobile- phone-text ' },
168168 { name: ' Web Dashboard' , icon: ' mdi:monitor' },
169169 { name: ' API Integration' , icon: ' mdi:api' },
170170 { name: ' Third-party Services' , icon: ' mdi:link-variant' },
@@ -483,32 +483,20 @@ const integrations = [
483483 </p >
484484 </div >
485485
486- <div class =" grid grid-cols-1 md:grid-cols-3 gap-8 " >
486+ <div class =" grid grid-cols-1 md:grid-cols-2 gap-16 " >
487487 {
488488 [
489489 {
490- name: " Starter" ,
491- devices: " Up to 10 Devices" ,
492- price: " Custom" ,
493- features: [
494- " Live tracking" ,
495- " Basic reports" ,
496- " Email alerts" ,
497- " Mobile app" ,
498- " Email support" ,
499- ],
500- },
501- {
502- name: " Professional" ,
490+ name: " Standard" ,
503491 devices: " Up to 50 Devices" ,
504- price: " Custom" ,
505492 highlighted: true ,
493+ price: " Free" ,
506494 features: [
507- " All Starter features" ,
508- " Advanced geofencing" ,
509- " Driver management" ,
495+ " Live tracking" ,
496+ " Basic reports" ,
497+ " Mobile application" ,
498+ " Advanced Geo-fencing" ,
510499 " Priority support" ,
511- " Custom reports" ,
512500 " API access" ,
513501 ],
514502 },
@@ -517,7 +505,7 @@ const integrations = [
517505 devices: " Unlimited" ,
518506 price: " Custom" ,
519507 features: [
520- " All Professional features" ,
508+ " All Standard features" ,
521509 " Dedicated account manager" ,
522510 " Custom integrations" ,
523511 " On-premise deployment" ,
@@ -527,7 +515,7 @@ const integrations = [
527515 },
528516 ].map ((plan ) => (
529517 <div
530- class = { ` card ${plan .highlighted ? " bg-primary text-white shadow-xl" : " bg-white border border-base-200 shadow-lg" } hover:shadow-2xl transition-shadow ` }
518+ class = { ` card ${plan .highlighted ? " bg-primary text-white shadow-xl" : " bg-white border border-base-200 shadow-lg" } hover:shadow-2xl transition-shadow lg:max-w-[450px] ` }
531519 >
532520 <div class = " card-body" >
533521 <h3
@@ -565,11 +553,17 @@ const integrations = [
565553 ))}
566554 </div >
567555 <div class = " card-actions mt-6" >
568- <button
556+ { plan .price === " Free" ? (<a
557+ href = " https://trac.ello360.com"
558+ aria-label = " Sign Up"
559+ class = { ` btn w-full ${plan .highlighted ? " btn-white text-primary" : " btn-primary" } ` }
560+ >{ " Sign Up" }
561+ </a >) : (<a
562+ href = " /company/contact-us"
563+ aria-label = " Contact Us"
569564 class = { ` btn w-full ${plan .highlighted ? " btn-white text-primary" : " btn-primary" } ` }
570- >
571- Get Started
572- </button >
565+ >{ " Contact Us" }
566+ </a >)}
573567 </div >
574568 </div >
575569 </div >
0 commit comments