update home,about,solutions

This commit is contained in:
2026-06-01 20:20:14 +05:30
parent 8d74f7063e
commit a59a5e79dc
19 changed files with 3543 additions and 1381 deletions

View File

@@ -1,5 +1,5 @@
import type { Metadata } from "next";
import { Manrope, Space_Grotesk } from "next/font/google";
import { Manrope, Space_Grotesk, Syne, DM_Sans } from "next/font/google";
import "./globals.css";
import Header from "@/components/layout/Header";
import Footer from "@/components/layout/Footer";
@@ -21,6 +21,19 @@ const spaceGrotesk = Space_Grotesk({
weight: ["400", "500", "600", "700"],
});
// Fonts for the Solutions industry section (Syne headings, DM Sans body).
const syne = Syne({
subsets: ["latin"],
variable: "--font-syne",
weight: ["600", "700", "800"],
});
const dmSans = DM_Sans({
subsets: ["latin"],
variable: "--font-dm-sans",
weight: ["400", "500"],
});
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.",
@@ -36,7 +49,7 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en-US" className={`${manrope.variable} ${spaceGrotesk.variable}`}>
<html lang="en-US" className={`${manrope.variable} ${spaceGrotesk.variable} ${syne.variable} ${dmSans.variable}`}>
<head>
{/* FontAwesome icons */}
<link