Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-15 16:40:32 +00:00
5 changed files with 55 additions and 24 deletions

View File

@@ -54,21 +54,21 @@ export default function AboutPage() {
id: 1,
title: "Scalable Cloud Infrastructure",
description: "Enterprise-grade cloud platform that scales automatically to handle peak demand during festival seasons and peak delivery periods across the country.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/high-tech-automated-warehouse-with-robot-1773592761471-ac5b5ff1.jpg",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/high-tech-automated-warehouse-with-robot-1773592761471-ac5b5ff1.jpg?_wi=1",
imageAlt: "Automated warehouse infrastructure",
},
{
id: 2,
title: "AI-Driven Decision Engine",
description: "Advanced machine learning models that make thousands of optimization decisions per second to ensure efficient routing, resource allocation, and predictive maintenance.",
videoSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/abstract-visualization-of-advanced-logis-1773592761326-04f8a23b.png",
videoSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/abstract-visualization-of-advanced-logis-1773592761326-04f8a23b.png?_wi=2",
videoAriaLabel: "AI engine demonstration",
},
{
id: 3,
title: "Real-Time Data Processing",
description: "Processing millions of data points every minute from delivery vehicles, packages, customers, and external systems to provide live insights and enable instant decision-making.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/india-map-with-glowing-network-nodes-rep-1773592761212-28b29cb2.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/india-map-with-glowing-network-nodes-rep-1773592761212-28b29cb2.png?_wi=2",
imageAlt: "Real-time network monitoring",
},
]}
@@ -121,7 +121,7 @@ export default function AboutPage() {
content: "All customer and delivery data is encrypted and stored securely. We maintain strict access controls and have transparent data handling policies. Customer data is never shared with third parties without explicit consent.",
},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/happy-delivery-personnel-with-packages-s-1773592760684-3f114234.png"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/happy-delivery-personnel-with-packages-s-1773592760684-3f114234.png?_wi=1"
imageAlt="LogisticsHub delivery success"
mediaAnimation="slide-up"
faqsAnimation="slide-up"

View File

@@ -53,7 +53,7 @@ export default function ContactPage() {
},
]}
buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/happy-delivery-personnel-with-packages-s-1773592760684-3f114234.png"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/happy-delivery-personnel-with-packages-s-1773592760684-3f114234.png?_wi=2"
imageAlt="Successful delivery operations"
mediaAnimation="slide-up"
ariaLabel="Contact page hero section"

View File

@@ -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>
);
}
}

View File

@@ -65,7 +65,7 @@ export default function HomePage() {
},
]}
buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/a-modern-sleek-last-mile-logistics-dashb-1773592761133-5b9308e5.png"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/a-modern-sleek-last-mile-logistics-dashb-1773592761133-5b9308e5.png?_wi=1"
imageAlt="LogisticsHub real-time tracking dashboard"
mediaAnimation="slide-up"
ariaLabel="Last mile logistics hero section"
@@ -152,21 +152,21 @@ export default function HomePage() {
id: 1,
title: "AI-Powered Route Optimization",
description: "Machine learning algorithms optimize routes in real-time, reducing delivery time by 30% and fuel costs by 25%.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/abstract-visualization-of-advanced-logis-1773592761326-04f8a23b.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/abstract-visualization-of-advanced-logis-1773592761326-04f8a23b.png?_wi=1",
imageAlt: "AI route optimization technology",
},
{
id: 2,
title: "Real-Time GPS Tracking",
description: "Live package tracking with minute-level accuracy. Customers and business partners get instant updates throughout delivery journey.",
videoSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/a-modern-sleek-last-mile-logistics-dashb-1773592761133-5b9308e5.png",
videoSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/a-modern-sleek-last-mile-logistics-dashb-1773592761133-5b9308e5.png?_wi=2",
videoAriaLabel: "Real-time tracking demonstration",
},
{
id: 3,
title: "Predictive Analytics Engine",
description: "Forecast demand, predict delays, and optimize inventory placement across the network using advanced data science.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/india-map-with-glowing-network-nodes-rep-1773592761212-28b29cb2.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/india-map-with-glowing-network-nodes-rep-1773592761212-28b29cb2.png?_wi=1",
imageAlt: "Pan-India network visualization",
},
]}

View File

@@ -53,21 +53,21 @@ export default function TechnologyPage() {
id: 1,
title: "AI-Powered Route Optimization",
description: "Machine learning algorithms analyze thousands of data points including traffic patterns, delivery density, weather conditions, and vehicle capacity to generate optimal routes in real-time. Reduces delivery time by 30% and fuel costs by 25%.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/abstract-visualization-of-advanced-logis-1773592761326-04f8a23b.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/abstract-visualization-of-advanced-logis-1773592761326-04f8a23b.png?_wi=3",
imageAlt: "AI route optimization technology",
},
{
id: 2,
title: "Real-Time GPS Tracking",
description: "Live package tracking with minute-level accuracy and updates every 30 seconds. Customers and business partners get instant notifications throughout the delivery journey with comprehensive analytics dashboards.",
videoSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/a-modern-sleek-last-mile-logistics-dashb-1773592761133-5b9308e5.png",
videoSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/a-modern-sleek-last-mile-logistics-dashb-1773592761133-5b9308e5.png?_wi=3",
videoAriaLabel: "Real-time tracking demonstration",
},
{
id: 3,
title: "Predictive Analytics Engine",
description: "Forecast demand, predict delays, and optimize inventory placement across the network using advanced data science. Our predictive models help prevent bottlenecks and ensure optimal resource allocation.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/india-map-with-glowing-network-nodes-rep-1773592761212-28b29cb2.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/india-map-with-glowing-network-nodes-rep-1773592761212-28b29cb2.png?_wi=3",
imageAlt: "Pan-India network visualization",
},
]}
@@ -120,7 +120,7 @@ export default function TechnologyPage() {
content: "LogisticsHub runs on enterprise-grade cloud infrastructure with 99.99% uptime SLA, redundant systems, and automatic failover. Our distributed architecture ensures consistent performance across all regions.",
},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/high-tech-automated-warehouse-with-robot-1773592761471-ac5b5ff1.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AzQ0hfSBuQUN5GIxrn8Ackum9o/high-tech-automated-warehouse-with-robot-1773592761471-ac5b5ff1.jpg?_wi=2"
imageAlt="LogisticsHub automated warehouse technology"
mediaAnimation="slide-up"
faqsAnimation="slide-up"