update about page

This commit is contained in:
2026-06-02 14:10:44 +05:30
parent a59a5e79dc
commit bae2fa0daa
24 changed files with 1903 additions and 1052 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

BIN
src/app/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -1,5 +1,5 @@
import type { Metadata } from "next";
import { Manrope, Space_Grotesk, Syne, DM_Sans } from "next/font/google";
import { Manrope, Space_Grotesk, Syne, DM_Sans, Inter } from "next/font/google";
import "./globals.css";
import Header from "@/components/layout/Header";
import Footer from "@/components/layout/Footer";
@@ -34,9 +34,21 @@ const dmSans = DM_Sans({
weight: ["400", "500"],
});
// Body font for the Solutions stacked industry sections.
const inter = Inter({
subsets: ["latin"],
variable: "--font-inter",
weight: ["400", "500", "600"],
});
export const metadata: Metadata = {
title: "Doormile — Last-Mile Logistics Intelligence",
description: "Doormile powers last-mile logistics with MileTruth™ AI, providing connected miles, SLA protection, and carrier management.",
icons: {
icon: "/images/cropped-image-2.png",
shortcut: "/images/cropped-image-2.png",
apple: "/images/cropped-image-2.png",
},
robots: {
index: true,
follow: true,
@@ -49,7 +61,7 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en-US" className={`${manrope.variable} ${spaceGrotesk.variable} ${syne.variable} ${dmSans.variable}`}>
<html lang="en-US" className={`${manrope.variable} ${spaceGrotesk.variable} ${syne.variable} ${dmSans.variable} ${inter.variable}`}>
<head>
{/* FontAwesome icons */}
<link

View File

@@ -3,7 +3,6 @@ import MileTruthHero from "../../components/sections/MileTruthHero";
import Workflow1 from "../../components/sections/Workflow1";
import Workflow2 from "../../components/sections/Workflow2";
import Workflow3 from "../../components/sections/Workflow3";
import OptimizationSection from "../../components/optimization/OptimizationSection";
import PerformanceSection from "../../components/performance/PerformanceSection";
export const metadata = {
@@ -18,7 +17,6 @@ export default function MileTruthPage() {
<div className="content-inner">
<div data-elementor-type="wp-page" data-elementor-id="59" className="elementor elementor-59">
<MileTruthHero />
<OptimizationSection />
<Workflow1 />
<Workflow2 />
<Workflow3 />

View File

@@ -1,6 +1,6 @@
import React from "react";
import SolutionsHero from "@/components/sections/SolutionsHero";
import SolutionCard1 from "@/components/sections/SolutionCard1";
import IndustryStack from "@/components/sections/IndustryStack";
export const metadata = {
title: "Solutions Doormile",
@@ -55,7 +55,7 @@ export default function SolutionsPage() {
<div className="content-inner">
<div data-elementor-type="wp-page" data-elementor-id="59" className="elementor elementor-59">
<SolutionsHero />
<SolutionCard1 />
<IndustryStack />
</div>
</div>
</div>