From b39cc80ab463a327c6c4d4b2d27702a3512ebd10 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 16:40:26 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 42 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..fac3073 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,58 @@ import type { Metadata } from "next"; +import { Libre_Baskerville, Inter } from "next/font/google"; import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Libre_Baskerville } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + +export const metadata: Metadata = { + title: "LogisticsHub - AI-Powered Last Mile Logistics Platform", + description: "Revolutionary last-mile logistics technology platform with pan-India scale. Real-time tracking, AI route optimization, and predictive analytics for enterprise deliveries.", + keywords: "last-mile logistics, delivery technology, route optimization, real-time tracking, pan-India logistics, AI delivery, supply chain management", + openGraph: { + title: "LogisticsHub - Transform Your Last-Mile Delivery", + description: "Enterprise-grade logistics platform powering millions of deliveries across India with cutting-edge AI technology.", + type: "website", + siteName: "LogisticsHub", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/a-modern-sleek-last-mile-logistics-dashb-1773592761133-5b9308e5.png", + alt: "LogisticsHub Platform Dashboard", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "LogisticsHub - Last-Mile Logistics Innovation", + description: "AI-powered delivery platform transforming logistics across India.", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/a-modern-sleek-last-mile-logistics-dashb-1773592761133-5b9308e5.png", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +61,9 @@ export default function RootLayout({ return ( - + {children}