Update src/app/layout.tsx
This commit is contained in:
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${libreBaskerville.variable} ${inter.variable} ${halant.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +75,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user