Files
doormile_react/src/app/about-us/page.tsx
2026-05-28 16:17:56 +05:30

36 lines
1.4 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 AboutHero from "@/components/sections/AboutHero";
import TheDoormileWay from "@/components/sections/TheDoormileWay";
import EVLogisticSection from "@/components/sections/EVLogisticSection";
import WomenSection from "@/components/sections/WomenSection";
import CompetitiveEdge from "@/components/sections/CompetitiveEdge";
import IntelligenceGrid from "@/components/sections/IntelligenceGrid";
import OurTeam from "@/components/sections/OurTeam";
import AboutCTA from "@/components/sections/AboutCTA";
export const metadata = {
title: "About Us Doormile",
description: "Meet the best crew and operators behind Doormile. Explore our roadmap, competitive edge, and operational excellence in EV and last-mile logistics.",
};
export default function AboutUsPage() {
return (
<div 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="86" className="elementor elementor-86">
<AboutHero />
<TheDoormileWay />
<EVLogisticSection />
<WomenSection />
<CompetitiveEdge />
<IntelligenceGrid />
<OurTeam />
<AboutCTA />
</div>
</div>
</div>
</div>
);
}