35 lines
1.2 KiB
JavaScript
35 lines
1.2 KiB
JavaScript
export const sections = [
|
|
{
|
|
id: 'first-mile',
|
|
title: 'First Mile Warehouse',
|
|
subtitle: 'Consolidation & Prep',
|
|
description: 'Incoming shipments are securely loaded, checked, and queued for transfer in our high-capacity fulfillment centers.',
|
|
progressStart: 0.0,
|
|
progressEnd: 0.25,
|
|
},
|
|
{
|
|
id: 'mid-mile',
|
|
title: 'Mid Mile Hub',
|
|
subtitle: 'Sorting & Direct Dispatch',
|
|
description: 'Consolidated goods travel between primary distribution nodes. Heavy logistics lanes sorting thousands of parcels per hour.',
|
|
progressStart: 0.25,
|
|
progressEnd: 0.5,
|
|
},
|
|
{
|
|
id: 'last-mile',
|
|
title: 'Last Mile Delivery',
|
|
subtitle: 'Doorstep Courier Services',
|
|
description: 'Local courier fleets take over for the final leg — MileTruth™ AI sequences the fastest doorstep routes and keeps every package tracked through to a confirmed delivery.',
|
|
progressStart: 0.5,
|
|
progressEnd: 0.75,
|
|
},
|
|
{
|
|
id: 'analytics',
|
|
title: 'Fulfillment Analytics',
|
|
subtitle: 'Real-Time Operational Insights',
|
|
description: 'A fully centralized dashboard monitoring transit times, fleet coordinates, carbon footprint, and delivery success rates.',
|
|
progressStart: 0.75,
|
|
progressEnd: 1.0,
|
|
},
|
|
]
|