46 lines
1.7 KiB
TypeScript
46 lines
1.7 KiB
TypeScript
import React from "react";
|
||
import MileTruthHero from "../../components/sections/MileTruthHero";
|
||
import MileTruthIntro from "../../components/sections/MileTruthIntro";
|
||
import Workflow1 from "../../components/sections/Workflow1";
|
||
import Workflow2 from "../../components/sections/Workflow2";
|
||
import Workflow4 from "../../components/sections/Workflow4";
|
||
import Workflow3Lazy from "../../components/sections/Workflow3Lazy";
|
||
import {
|
||
SolutionAIVehicleSelection,
|
||
SolutionSmartRouteIntelligence,
|
||
SolutionQuantumDecisionEngine,
|
||
SolutionLiveLogisticsIntelligence,
|
||
SolutionMileTruthAI,
|
||
SolutionOperationsDashboard,
|
||
} from "../../components/sections/SolutionsWorkflow";
|
||
|
||
export const metadata = {
|
||
title: "MileTruth – Doormile",
|
||
description: "Optimizes every stage of the logistics journey for maximum efficiency. Explore the only AI built exclusively for logistics.",
|
||
};
|
||
|
||
export default function MileTruthPage() {
|
||
return (
|
||
<div id="miletruth" className="content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none">
|
||
<div className="content">
|
||
<div className="content-inner">
|
||
<div data-elementor-type="wp-page" data-elementor-id="59" className="elementor elementor-59">
|
||
<MileTruthHero />
|
||
<MileTruthIntro />
|
||
<SolutionAIVehicleSelection />
|
||
<Workflow1 />
|
||
<SolutionSmartRouteIntelligence />
|
||
<Workflow2 />
|
||
<SolutionQuantumDecisionEngine />
|
||
<Workflow4 />
|
||
<SolutionLiveLogisticsIntelligence />
|
||
<SolutionMileTruthAI />
|
||
<SolutionOperationsDashboard />
|
||
<Workflow3Lazy />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|