update home,about,solutions
This commit is contained in:
@@ -18,7 +18,7 @@ export default function AboutUsPage() {
|
||||
<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">
|
||||
<div data-elementor-type="wp-page" data-elementor-id="86" className="elementor elementor-86 elementor-59">
|
||||
<AboutHero />
|
||||
<TheDoormileWay />
|
||||
<EVLogisticSection />
|
||||
|
||||
@@ -767,7 +767,7 @@ body {
|
||||
content: '' !important;
|
||||
position: absolute !important;
|
||||
inset: 0 !important;
|
||||
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.78) 55%, rgba(0, 0, 0, 0.95) 100%) !important;
|
||||
background: var(--hero-overlay, linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.78) 55%, rgba(0, 0, 0, 0.95) 100%)) !important;
|
||||
z-index: 1 !important;
|
||||
}
|
||||
|
||||
@@ -777,6 +777,13 @@ body {
|
||||
}
|
||||
|
||||
/* Responsive constraints to keep all heroes matching the home page carousel perfectly */
|
||||
@media (max-width: 1536px) {
|
||||
.custom-standard-hero-card {
|
||||
height: 600px !important;
|
||||
min-height: 600px !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.custom-standard-hero-container {
|
||||
padding: 10px 10px 10px 10px !important;
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user