Files
doormile_react/src/app/how-it-works/page.tsx

27 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import React from "react";
import HowItWorksHero from "../../components/sections/HowItWorksHero";
import Experience3DLoader from "@/modules/how-it-works-3d/Experience3DLoader";
export const metadata = {
title: "How It Works Doormile",
description: "See how Doormile connects first, mid, and last mile into a seamless delivery experience powered by MileTruth™ AI.",
};
export default function HowItWorksPage() {
return (
<div id="how-it-works" 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">
<HowItWorksHero />
{/* The first/mid/last-mile story is now told by the scroll-driven 3D
experience, which replaces the former Miles3 / WhyChooseDoormile /
TheDoormileWay content sections on this page. */}
<Experience3DLoader />
</div>
</div>
</div>
</div>
);
}