From 4209e81f3ca428ffea1345bf0ad06435492a22aa Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 15:12:33 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1415 +------------------------------------------- 1 file changed, 6 insertions(+), 1409 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f884cff..6a8afba 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "L.E.M. Logistics LLC | Northeast Freight Carrier Solutions", description: "5-Star rated freight carrier serving NJ, PA, and NY. Regional trucking, dedicated freight, and expedited shipping. Fully insured, real-time tracking, 99%+ on-time delivery. Get a quote today.", keywords: "freight carrier, trucking company, logistics, New Jersey, Pennsylvania, New York, regional freight, dedicated trucking, expedited shipping, Willingboro NJ", metadataBase: new URL("https://lemlogistics.com"), - openGraph: { - title: "L.E.M. Logistics LLC | Professional Freight Solutions", description: "Reliable 5-star freight carrier serving the Northeast. Fast quotes, real-time tracking, and professional dispatch.", url: "https://lemlogistics.com", siteName: "L.E.M. Logistics LLC", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/driver-checks-goods-man-uniform-truck-garage_1157-46543.jpg", alt: "professional semi truck highway logistics"}, - ], - }, - twitter: { - card: "summary_large_image", title: "L.E.M. Logistics LLC | Northeast Freight Solutions", description: "5-Star rated freight carrier. Quote now: (609) 510-8473", images: ["http://img.b2bpic.net/free-photo/driver-checks-goods-man-uniform-truck-garage_1157-46543.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "L.E.M. Logistics LLC - Northeast Freight Solutions", description: "Reliable freight solutions and modern logistics management. 5-star rated carrier serving New Jersey, Pennsylvania, and New York with on-time excellence."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -