Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-02-25 06:07:24 +00:00
9 changed files with 108 additions and 380 deletions

View File

@@ -4,9 +4,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import MediaAbout from '@/components/sections/about/MediaAbout';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Truck, Building2, Users, Zap, Award, HelpCircle } from "lucide-react";
import { Truck, Building2, Users, Award } from "lucide-react";
export default function AboutPage() {
return (
@@ -26,10 +25,10 @@ export default function AboutPage() {
<NavbarLayoutFloatingInline
brandName="LogisticNet"
navItems={[
{ name: "Home", id: "/" },
{ name: "Solutions", id: "/solutions" },
{ name: "Network", id: "/about" },
{ name: "Case Studies", id: "/solutions" },
{ name: "Pricing", id: "/pricing" }
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Request Demo", href: "/contact" }}
/>
@@ -55,25 +54,13 @@ export default function AboutPage() {
tagIcon={Award}
metrics={[
{
id: "warehouses",
value: "250",
title: "Warehouse Locations",
description: "Strategically positioned across North America",
icon: Building2
id: "warehouses", value: "250", title: "Warehouse Locations", description: "Strategically positioned across North America", icon: Building2
},
{
id: "coverage",
value: "98",
title: "Coverage Percentage",
description: "Of major metropolitan areas served",
icon: Truck
id: "coverage", value: "98", title: "Coverage Percentage", description: "Of major metropolitan areas served", icon: Truck
},
{
id: "capacity",
value: "15",
title: "Million Sq Ft",
description: "Total warehouse storage capacity",
icon: Building2
id: "capacity", value: "15", title: "Million Sq Ft", description: "Total warehouse storage capacity", icon: Building2
}
]}
gridVariant="uniform-all-items-equal"
@@ -83,46 +70,12 @@ export default function AboutPage() {
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
title="Network Operations FAQ"
description="Learn more about LogisticNet's comprehensive logistics infrastructure and operational capabilities."
tag="Network Details"
tagIcon={HelpCircle}
faqs={[
{
id: "1",
title: "What regions does your warehouse network cover?",
content: "Our 250 warehouses span all major metropolitan areas in North America, with primary hubs in California, Texas, New York, Illinois, and Georgia. We maintain specialized facilities for temperature-controlled storage, hazmat materials, and high-value goods across 48 states."
},
{
id: "2",
title: "How do you ensure network reliability?",
content: "We maintain 99.7% network uptime through redundant systems, real-time monitoring, and proactive maintenance. Each warehouse has backup power systems, alternative routing capabilities, and cross-docking facilities to ensure continuous operations."
},
{
id: "3",
title: "What is your average delivery radius from warehouses?",
content: "Our warehouse positioning ensures 85% of shipments reach their destination within 150 miles of origin. This strategic placement enables same-day and next-day delivery for most major markets while optimizing transportation costs."
}
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/a-detailed-analytics-dashboard-showing-d-1771991398781-6fb5bcee.png?_wi=2"
imageAlt="Network analytics and performance monitoring"
mediaAnimation="slide-up"
mediaPosition="right"
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<FooterBase
logoText="LogisticNet"
copyrightText="© 2025 LogisticNet. All rights reserved. Integrated Logistics for the Modern Enterprise."
columns={[
{
title: "Solutions",
items: [
title: "Solutions", items: [
{ label: "Fleet Management", href: "/solutions" },
{ label: "Warehouse Network", href: "/about" },
{ label: "Demand Forecasting", href: "/solutions" },
@@ -130,8 +83,7 @@ export default function AboutPage() {
]
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Pricing", href: "/pricing" },
{ label: "Case Studies", href: "/solutions" },
@@ -139,8 +91,7 @@ export default function AboutPage() {
]
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Help Center", href: "#" },
{ label: "Contact Us", href: "/contact" },
{ label: "System Status", href: "#" },

View File

@@ -28,13 +28,9 @@ export default function BlogPage() {
<NavbarLayoutFloatingInline
brandName="LogisticNet"
navItems={[
{ name: "Home", id: "/" },
{ name: "Solutions", id: "features" },
{ name: "Network", id: "about" },
{ name: "Case Studies", id: "testimonials" },
{ name: "Pricing", id: "pricing" }
{ name: "Home", id: "/" }
]}
button={{ text: "Request Demo", href: "#contact" }}
button={{ text: "Contact", href: "/contact" }}
/>
</div>
@@ -64,28 +60,11 @@ export default function BlogPage() {
logoText="LogisticNet"
copyrightText="© 2025 LogisticNet. All rights reserved. Integrated Logistics for the Modern Enterprise."
columns={[
{
title: "Solutions", items: [
{ label: "Fleet Management", href: "features" },
{ label: "Warehouse Network", href: "about" },
{ label: "Demand Forecasting", href: "features" },
{ label: "Last-Mile Delivery", href: "features" }
]
},
{
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "About Us", href: "/about" },
{ label: "Pricing", href: "/pricing" },
{ label: "Case Studies", href: "testimonials" },
{ label: "Blog", href: "#" }
]
},
{
title: "Support", items: [
{ label: "Help Center", href: "#" },
{ label: "Contact Us", href: "/contact" },
{ label: "System Status", href: "#" },
{ label: "Documentation", href: "#" }
{ label: "Contact Us", href: "/contact" }
]
}
]}

View File

@@ -3,10 +3,9 @@ import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Rocket, HelpCircle, Clock, Users, CheckCircle } from "lucide-react";
import { Rocket, Clock, Users, CheckCircle } from "lucide-react";
export default function ContactPage() {
return (
@@ -26,9 +25,9 @@ export default function ContactPage() {
<NavbarLayoutFloatingInline
brandName="LogisticNet"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Solutions", id: "/solutions" },
{ name: "Network", id: "/about" },
{ name: "Case Studies", id: "/solutions" },
{ name: "Pricing", id: "/pricing" }
]}
button={{ text: "Request Demo", href: "/contact" }}
@@ -57,25 +56,13 @@ export default function ContactPage() {
tagIcon={CheckCircle}
metrics={[
{
id: "response-time",
value: "24",
title: "Hours Response",
description: "Initial contact within one business day",
icon: Clock
id: "response-time", value: "24", title: "Hours Response", description: "Initial contact within one business day", icon: Clock
},
{
id: "assessment-time",
value: "48",
title: "Hours to Analysis",
description: "Complete logistics assessment delivered",
icon: CheckCircle
id: "assessment-time", value: "48", title: "Hours to Analysis", description: "Complete logistics assessment delivered", icon: CheckCircle
},
{
id: "team-size",
value: "3",
title: "Experts Assigned",
description: "Dedicated team for your evaluation",
icon: Users
id: "team-size", value: "3", title: "Experts Assigned", description: "Dedicated team for your evaluation", icon: Users
}
]}
gridVariant="uniform-all-items-equal"
@@ -85,51 +72,12 @@ export default function ContactPage() {
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
title="Contact & Implementation FAQ"
description="Common questions about getting started with LogisticNet and our implementation process."
tag="Getting Started"
tagIcon={HelpCircle}
faqs={[
{
id: "1",
title: "What information do you need for the initial consultation?",
content: "We'll need basic information about your current shipping volumes, primary routes, warehousing needs, and any specific challenges you're facing. Our team will send a brief questionnaire before the consultation to maximize efficiency."
},
{
id: "2",
title: "How long does the implementation process take?",
content: "Most implementations complete within 4-6 weeks from contract signing. This includes system integration, staff training, and gradual transition of your logistics operations. We ensure zero disruption to your existing operations during the transition."
},
{
id: "3",
title: "Do you offer pilot programs for large enterprises?",
content: "Yes, we offer 90-day pilot programs for enterprise clients. This allows you to test our services on a limited scale before full implementation. Pilot programs typically cover 1-2 shipping corridors or product lines."
},
{
id: "4",
title: "What ongoing support do you provide after implementation?",
content: "Every client receives a dedicated account manager, 24/7 technical support, quarterly business reviews, and access to our client portal. We also provide ongoing optimization recommendations as your business grows."
}
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/professional-portrait-of-a-business-exec-1771991397938-911577d9.png?_wi=2"
imageAlt="LogisticNet consultation and support team"
mediaAnimation="slide-up"
mediaPosition="right"
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<FooterBase
logoText="LogisticNet"
copyrightText="© 2025 LogisticNet. All rights reserved. Integrated Logistics for the Modern Enterprise."
columns={[
{
title: "Solutions",
items: [
title: "Solutions", items: [
{ label: "Fleet Management", href: "/solutions" },
{ label: "Warehouse Network", href: "/about" },
{ label: "Demand Forecasting", href: "/solutions" },
@@ -137,8 +85,7 @@ export default function ContactPage() {
]
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Pricing", href: "/pricing" },
{ label: "Case Studies", href: "/solutions" },
@@ -146,8 +93,7 @@ export default function ContactPage() {
]
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Help Center", href: "#" },
{ label: "Contact Us", href: "/contact" },
{ label: "System Status", href: "#" },

View File

@@ -5,26 +5,15 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const lato = Lato({
variable: "--font-lato",
subsets: ["latin"],
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
export const metadata: Metadata = {
title: "LogisticNet | End-to-End B2B Logistics from China",
description: "Integrated physical-digital logistics network. 3,500 trucks, 250 warehouses, AI forecasting. China to final-mile delivery optimized.",
keywords: "B2B logistics, supply chain, warehousing, fleet management, last-mile delivery, China logistics",
openGraph: {
title: "LogisticNet | Enterprise Logistics Solutions",
description: "Transform your supply chain with our integrated logistics network.",
siteName: "LogisticNet",
type: "website",
},
title: "LogisticNet | End-to-End B2B Logistics from China", description: "Integrated physical-digital logistics network. 3,500 trucks, 250 warehouses, AI forecasting. China to final-mile delivery optimized.", keywords: "B2B logistics, supply chain, warehousing, fleet management, last-mile delivery, China logistics", openGraph: {
title: "LogisticNet | Enterprise Logistics Solutions", description: "Transform your supply chain with our integrated logistics network.", siteName: "LogisticNet", type: "website"},
twitter: {
card: "summary_large_image",
title: "LogisticNet | B2B Logistics Platform",
description: "3,500 trucks and AI forecasting for enterprise supply chains.",
},
card: "summary_large_image", title: "LogisticNet | B2B Logistics Platform", description: "3,500 trucks and AI forecasting for enterprise supply chains."},
robots: {
index: true,
follow: true,

View File

@@ -29,10 +29,10 @@ export default function HomePage() {
<NavbarLayoutFloatingInline
brandName="LogisticNet"
navItems={[
{ name: "About", id: "/about" },
{ name: "Solutions", id: "/solutions" },
{ name: "Network", id: "/about" },
{ name: "Case Studies", id: "/solutions" },
{ name: "Pricing", id: "/pricing" }
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Request Demo", href: "/contact" }}
/>
@@ -55,6 +55,7 @@ export default function HomePage() {
imageAlt: "A stylized world map showing an interconnected global logistics network"
}
]}
mediaAnimation="slide-up"
rating={5}
ratingText="Trusted by 500+ Enterprise Clients"
buttons={[
@@ -84,32 +85,16 @@ export default function HomePage() {
tagIcon={Shield}
features={[
{
title: "Real-Time Fleet Tracking",
description: "Monitor all 3,500+ vehicles across your network with GPS precision and predictive ETA.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/a-fleet-of-modern-logistics-trucks-lined-1771991399434-bd83e6d5.png",
imageAlt: "Fleet of logistics trucks",
buttonIcon: ArrowRight
title: "Real-Time Fleet Tracking", description: "Monitor all 3,500+ vehicles across your network with GPS precision and predictive ETA.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/a-fleet-of-modern-logistics-trucks-lined-1771991399434-bd83e6d5.png", imageAlt: "Fleet of logistics trucks", buttonIcon: ArrowRight
},
{
title: "Demand Forecasting Engine",
description: "AI-powered predictions optimize inventory positioning and reduce stockouts by 40%.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/a-detailed-analytics-dashboard-showing-d-1771991398781-6fb5bcee.png?_wi=1",
imageAlt: "Analytics and forecasting dashboard",
buttonIcon: TrendingUp
title: "Demand Forecasting Engine", description: "AI-powered predictions optimize inventory positioning and reduce stockouts by 40%.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/a-detailed-analytics-dashboard-showing-d-1771991398781-6fb5bcee.png?_wi=1", imageAlt: "Analytics and forecasting dashboard", buttonIcon: TrendingUp
},
{
title: "Smart Warehouse Network",
description: "Access our nationwide warehouse system with automated allocation and cross-docking capabilities.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/professional-cargo-handling-at-a-modern--1771991398762-9d97f210.png?_wi=1",
imageAlt: "Automated warehouse operations",
buttonIcon: Package
title: "Smart Warehouse Network", description: "Access our nationwide warehouse system with automated allocation and cross-docking capabilities.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/professional-cargo-handling-at-a-modern--1771991398762-9d97f210.png?_wi=1", imageAlt: "Automated warehouse operations", buttonIcon: Package
},
{
title: "Last-Mile Optimization",
description: "Route optimization and delivery scheduling reduce costs by 35% while improving customer satisfaction.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/a-mobile-phone-and-computer-screen-displ-1771991399839-be9d71dd.png?_wi=1",
imageAlt: "Real-time tracking interface",
buttonIcon: MapPin
title: "Last-Mile Optimization", description: "Route optimization and delivery scheduling reduce costs by 35% while improving customer satisfaction.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/a-mobile-phone-and-computer-screen-displ-1771991399839-be9d71dd.png?_wi=1", imageAlt: "Real-time tracking interface", buttonIcon: MapPin
}
]}
textboxLayout="default"
@@ -125,32 +110,16 @@ export default function HomePage() {
tagIcon={Award}
metrics={[
{
id: "trucks",
value: "3500",
title: "Active Vehicles",
description: "Strategic fleet across major corridors",
icon: Truck
id: "trucks", value: "3500", title: "Active Vehicles", description: "Strategic fleet across major corridors", icon: Truck
},
{
id: "warehouses",
value: "250",
title: "Network Locations",
description: "Nationwide warehouse coverage",
icon: Building2
id: "warehouses", value: "250", title: "Network Locations", description: "Nationwide warehouse coverage", icon: Building2
},
{
id: "clients",
value: "500",
title: "Enterprise Clients",
description: "Fortune 500 and mid-market companies",
icon: Users
id: "clients", value: "500", title: "Enterprise Clients", description: "Fortune 500 and mid-market companies", icon: Users
},
{
id: "daily-shipments",
value: "45000",
title: "Daily Shipments",
description: "Seamless end-to-end deliveries",
icon: Zap
id: "daily-shipments", value: "45000", title: "Daily Shipments", description: "Seamless end-to-end deliveries", icon: Zap
}
]}
gridVariant="uniform-all-items-equal"
@@ -169,35 +138,19 @@ export default function HomePage() {
showRating={true}
testimonials={[
{
id: "1",
name: "Sarah Chen",
handle: "@sarahchen",
testimonial: "LogisticNet reduced our logistics costs by 32% in the first year. Their demand forecasting integration eliminated our excess inventory challenges. Outstanding partner.",
rating: 5,
id: "1", name: "Sarah Chen", handle: "@sarahchen", testimonial: "LogisticNet reduced our logistics costs by 32% in the first year. Their demand forecasting integration eliminated our excess inventory challenges. Outstanding partner.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/professional-portrait-of-a-business-exec-1771991397938-911577d9.png?_wi=1"
},
{
id: "2",
name: "Marcus Rodriguez",
handle: "@mrodriguez",
testimonial: "The real-time tracking and warehouse network optimization changed how we manage our supply chain. Delivery times dropped from 6 days to 3 days across our region.",
rating: 5,
id: "2", name: "Marcus Rodriguez", handle: "@mrodriguez", testimonial: "The real-time tracking and warehouse network optimization changed how we manage our supply chain. Delivery times dropped from 6 days to 3 days across our region.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/professional-portrait-of-a-logistics-ope-1771991399783-a8b42e15.png"
},
{
id: "3",
name: "Elena Vasquez",
handle: "@evasquez",
testimonial: "LogisticNet's integrated approach bridges physical and digital seamlessly. Their team understood our complex international requirements immediately and delivered results.",
rating: 5,
id: "3", name: "Elena Vasquez", handle: "@evasquez", testimonial: "LogisticNet's integrated approach bridges physical and digital seamlessly. Their team understood our complex international requirements immediately and delivered results.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/professional-portrait-of-a-supply-chain--1771991399773-373496dc.png?_wi=1"
},
{
id: "4",
name: "David Kim",
handle: "@dkim",
testimonial: "We've worked with many logistics providers. LogisticNet stands out for their forecasting accuracy and proactive network optimization. True partnership.",
rating: 5,
id: "4", name: "David Kim", handle: "@dkim", testimonial: "We've worked with many logistics providers. LogisticNet stands out for their forecasting accuracy and proactive network optimization. True partnership.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/professional-portrait-of-an-ecommerce-op-1771991398868-b43afe14.png"
}
]}
@@ -226,8 +179,7 @@ export default function HomePage() {
copyrightText="© 2025 LogisticNet. All rights reserved. Integrated Logistics for the Modern Enterprise."
columns={[
{
title: "Solutions",
items: [
title: "Solutions", items: [
{ label: "Fleet Management", href: "/solutions" },
{ label: "Warehouse Network", href: "/about" },
{ label: "Demand Forecasting", href: "/solutions" },
@@ -235,8 +187,7 @@ export default function HomePage() {
]
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Pricing", href: "/pricing" },
{ label: "Case Studies", href: "/solutions" },
@@ -244,8 +195,7 @@ export default function HomePage() {
]
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Help Center", href: "#" },
{ label: "Contact Us", href: "/contact" },
{ label: "System Status", href: "#" },

View File

@@ -26,10 +26,10 @@ export default function PricingPage() {
<NavbarLayoutFloatingInline
brandName="LogisticNet"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Solutions", id: "/solutions" },
{ name: "Network", id: "/about" },
{ name: "Case Studies", id: "/solutions" },
{ name: "Pricing", id: "/pricing" }
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Request Demo", href: "/contact" }}
/>
@@ -55,25 +55,13 @@ export default function PricingPage() {
tagIcon={DollarSign}
metrics={[
{
id: "logistics-savings",
value: "32",
title: "% Cost Reduction",
description: "Average logistics expense decrease",
icon: TrendingDown
id: "logistics-savings", value: "32", title: "% Cost Reduction", description: "Average logistics expense decrease", icon: TrendingDown
},
{
id: "inventory-optimization",
value: "40",
title: "% Stockout Reduction",
description: "Through predictive forecasting",
icon: Calculator
id: "inventory-optimization", value: "40", title: "% Stockout Reduction", description: "Through predictive forecasting", icon: Calculator
},
{
id: "roi-timeline",
value: "6",
title: "Months to ROI",
description: "Average payback period",
icon: DollarSign
id: "roi-timeline", value: "6", title: "Months to ROI", description: "Average payback period", icon: DollarSign
}
]}
gridVariant="uniform-all-items-equal"
@@ -102,8 +90,7 @@ export default function PricingPage() {
copyrightText="© 2025 LogisticNet. All rights reserved. Integrated Logistics for the Modern Enterprise."
columns={[
{
title: "Solutions",
items: [
title: "Solutions", items: [
{ label: "Fleet Management", href: "/solutions" },
{ label: "Warehouse Network", href: "/about" },
{ label: "Demand Forecasting", href: "/solutions" },
@@ -111,8 +98,7 @@ export default function PricingPage() {
]
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Pricing", href: "/pricing" },
{ label: "Case Studies", href: "/solutions" },
@@ -120,8 +106,7 @@ export default function PricingPage() {
]
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Help Center", href: "#" },
{ label: "Contact Us", href: "/contact" },
{ label: "System Status", href: "#" },

View File

@@ -93,12 +93,8 @@ function ProductPageContent({ params }: ProductPageProps) {
<NavbarLayoutFloatingInline
brandName="LogisticNet"
navItems={[
{"name":"Home","id":"/"},
{"name":"Solutions","id":"features"},
{"name":"Network","id":"about"},
{"name":"Case Studies","id":"testimonials"},
{"name":"Pricing","id":"pricing"},
{"name":"Shop","id":"/shop"}
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -111,9 +107,12 @@ function ProductPageContent({ params }: ProductPageProps) {
logoText="LogisticNet"
copyrightText="© 2025 LogisticNet. All rights reserved. Integrated Logistics for the Modern Enterprise."
columns={[
{"title":"Solutions","items":[{"label":"Fleet Management","href":"features"},{"label":"Warehouse Network","href":"about"},{"label":"Demand Forecasting","href":"features"},{"label":"Last-Mile Delivery","href":"features"}]},
{"title":"Company","items":[{"label":"About Us","href":"/about"},{"label":"Pricing","href":"/pricing"},{"label":"Case Studies","href":"testimonials"}]},
{"title":"Support","items":[{"label":"Contact Us","href":"/contact"}]}
{
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "Shop", href: "/shop" }
]
}
]}
/>
</div>
@@ -141,12 +140,8 @@ function ProductPageContent({ params }: ProductPageProps) {
<NavbarLayoutFloatingInline
brandName="LogisticNet"
navItems={[
{"name":"Home","id":"/"},
{"name":"Solutions","id":"features"},
{"name":"Network","id":"about"},
{"name":"Case Studies","id":"testimonials"},
{"name":"Pricing","id":"pricing"},
{"name":"Shop","id":"/shop"}
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -167,9 +162,12 @@ function ProductPageContent({ params }: ProductPageProps) {
logoText="LogisticNet"
copyrightText="© 2025 LogisticNet. All rights reserved. Integrated Logistics for the Modern Enterprise."
columns={[
{"title":"Solutions","items":[{"label":"Fleet Management","href":"features"},{"label":"Warehouse Network","href":"about"},{"label":"Demand Forecasting","href":"features"},{"label":"Last-Mile Delivery","href":"features"}]},
{"title":"Company","items":[{"label":"About Us","href":"/about"},{"label":"Pricing","href":"/pricing"},{"label":"Case Studies","href":"testimonials"}]},
{"title":"Support","items":[{"label":"Contact Us","href":"/contact"}]}
{
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "Shop", href: "/shop" }
]
}
]}
/>
</div>
@@ -196,12 +194,8 @@ function ProductPageContent({ params }: ProductPageProps) {
<NavbarLayoutFloatingInline
brandName="LogisticNet"
navItems={[
{"name":"Home","id":"/"},
{"name":"Solutions","id":"features"},
{"name":"Network","id":"about"},
{"name":"Case Studies","id":"testimonials"},
{"name":"Pricing","id":"pricing"},
{"name":"Shop","id":"/shop"}
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -247,9 +241,12 @@ function ProductPageContent({ params }: ProductPageProps) {
logoText="LogisticNet"
copyrightText="© 2025 LogisticNet. All rights reserved. Integrated Logistics for the Modern Enterprise."
columns={[
{"title":"Solutions","items":[{"label":"Fleet Management","href":"features"},{"label":"Warehouse Network","href":"about"},{"label":"Demand Forecasting","href":"features"},{"label":"Last-Mile Delivery","href":"features"}]},
{"title":"Company","items":[{"label":"About Us","href":"/about"},{"label":"Pricing","href":"/pricing"},{"label":"Case Studies","href":"testimonials"}]},
{"title":"Support","items":[{"label":"Contact Us","href":"/contact"}]}
{
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "Shop", href: "/shop" }
]
}
]}
/>
</div>

View File

@@ -36,12 +36,7 @@ function ShopPageContent() {
<NavbarLayoutFloatingInline
brandName="LogisticNet"
navItems={[
{"name":"Home","id":"/"},
{"name":"Solutions","id":"features"},
{"name":"Network","id":"about"},
{"name":"Case Studies","id":"testimonials"},
{"name":"Pricing","id":"pricing"},
{"name":"Shop","id":"/shop"}
{ name: "Home", id: "/" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
/>
@@ -54,9 +49,12 @@ function ShopPageContent() {
logoText="LogisticNet"
copyrightText="© 2025 LogisticNet. All rights reserved. Integrated Logistics for the Modern Enterprise."
columns={[
{"title":"Solutions","items":[{"label":"Fleet Management","href":"features"},{"label":"Warehouse Network","href":"about"},{"label":"Demand Forecasting","href":"features"},{"label":"Last-Mile Delivery","href":"features"}]},
{"title":"Company","items":[{"label":"About Us","href":"/about"},{"label":"Pricing","href":"/pricing"},{"label":"Case Studies","href":"testimonials"}]},
{"title":"Support","items":[{"label":"Contact Us","href":"/contact"}]}
{
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "Contact Us", href: "/contact" }
]
}
]}
/>
</div>
@@ -83,12 +81,7 @@ function ShopPageContent() {
<NavbarLayoutFloatingInline
brandName="LogisticNet"
navItems={[
{"name":"Home","id":"/"},
{"name":"Solutions","id":"features"},
{"name":"Network","id":"about"},
{"name":"Case Studies","id":"testimonials"},
{"name":"Pricing","id":"pricing"},
{"name":"Shop","id":"/shop"}
{ name: "Home", id: "/" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
/>
@@ -109,9 +102,12 @@ function ShopPageContent() {
logoText="LogisticNet"
copyrightText="© 2025 LogisticNet. All rights reserved. Integrated Logistics for the Modern Enterprise."
columns={[
{"title":"Solutions","items":[{"label":"Fleet Management","href":"features"},{"label":"Warehouse Network","href":"about"},{"label":"Demand Forecasting","href":"features"},{"label":"Last-Mile Delivery","href":"features"}]},
{"title":"Company","items":[{"label":"About Us","href":"/about"},{"label":"Pricing","href":"/pricing"},{"label":"Case Studies","href":"testimonials"}]},
{"title":"Support","items":[{"label":"Contact Us","href":"/contact"}]}
{
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "Contact Us", href: "/contact" }
]
}
]}
/>
</div>

View File

@@ -4,9 +4,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Shield, ArrowRight, TrendingUp, Package, MapPin, Star, HelpCircle } from "lucide-react";
import { Shield, ArrowRight, TrendingUp, Package, MapPin, Star } from "lucide-react";
export default function SolutionsPage() {
return (
@@ -26,10 +25,10 @@ export default function SolutionsPage() {
<NavbarLayoutFloatingInline
brandName="LogisticNet"
navItems={[
{ name: "Solutions", id: "/solutions" },
{ name: "Network", id: "/about" },
{ name: "Case Studies", id: "/solutions" },
{ name: "Pricing", id: "/pricing" }
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Request Demo", href: "/contact" }}
/>
@@ -43,32 +42,16 @@ export default function SolutionsPage() {
tagIcon={Shield}
features={[
{
title: "China Gateway Operations",
description: "Direct partnerships with manufacturers and ports in Shanghai, Shenzhen, and Guangzhou for seamless international logistics.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/a-stylized-world-map-showing-an-intercon-1771991399459-40aef28e.png?_wi=2",
imageAlt: "Global logistics network connections",
buttonIcon: ArrowRight
title: "China Gateway Operations", description: "Direct partnerships with manufacturers and ports in Shanghai, Shenzhen, and Guangzhou for seamless international logistics.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/a-stylized-world-map-showing-an-intercon-1771991399459-40aef28e.png?_wi=2", imageAlt: "Global logistics network connections", buttonIcon: ArrowRight
},
{
title: "Predictive Analytics Platform",
description: "Machine learning algorithms analyze 60+ data points to forecast demand patterns and optimize inventory positioning.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/a-detailed-analytics-dashboard-showing-d-1771991398781-6fb5bcee.png?_wi=3",
imageAlt: "Advanced analytics and forecasting",
buttonIcon: TrendingUp
title: "Predictive Analytics Platform", description: "Machine learning algorithms analyze 60+ data points to forecast demand patterns and optimize inventory positioning.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/a-detailed-analytics-dashboard-showing-d-1771991398781-6fb5bcee.png?_wi=3", imageAlt: "Advanced analytics and forecasting", buttonIcon: TrendingUp
},
{
title: "Automated Cross-Docking",
description: "Streamlined warehouse operations with automated sorting and real-time inventory management across 250 locations.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/professional-cargo-handling-at-a-modern--1771991398762-9d97f210.png?_wi=2",
imageAlt: "Automated warehouse operations",
buttonIcon: Package
title: "Automated Cross-Docking", description: "Streamlined warehouse operations with automated sorting and real-time inventory management across 250 locations.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/professional-cargo-handling-at-a-modern--1771991398762-9d97f210.png?_wi=2", imageAlt: "Automated warehouse operations", buttonIcon: Package
},
{
title: "Real-Time Route Optimization",
description: "Dynamic routing algorithms reduce delivery times by 35% while optimizing fuel efficiency and driver schedules.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/a-mobile-phone-and-computer-screen-displ-1771991399839-be9d71dd.png?_wi=2",
imageAlt: "Real-time tracking and optimization",
buttonIcon: MapPin
title: "Real-Time Route Optimization", description: "Dynamic routing algorithms reduce delivery times by 35% while optimizing fuel efficiency and driver schedules.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/a-mobile-phone-and-computer-screen-displ-1771991399839-be9d71dd.png?_wi=2", imageAlt: "Real-time tracking and optimization", buttonIcon: MapPin
}
]}
textboxLayout="default"
@@ -85,27 +68,15 @@ export default function SolutionsPage() {
showRating={true}
testimonials={[
{
id: "1",
name: "Jennifer Walsh",
handle: "@jwalsh",
testimonial: "Their predictive analytics saved us millions in potential stockouts and overstocking. The platform integration is seamless and the support team is exceptional.",
rating: 5,
id: "1", name: "Jennifer Walsh", handle: "@jwalsh", testimonial: "Their predictive analytics saved us millions in potential stockouts and overstocking. The platform integration is seamless and the support team is exceptional.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/professional-portrait-of-a-procurement-m-1771991399519-c85150ae.png"
},
{
id: "2",
name: "Thomas Anderson",
handle: "@tanderson",
testimonial: "LogisticNet's end-to-end solution eliminated our reliance on multiple vendors. Single platform, transparent pricing, measurable results. Highly recommended.",
rating: 5,
id: "2", name: "Thomas Anderson", handle: "@tanderson", testimonial: "LogisticNet's end-to-end solution eliminated our reliance on multiple vendors. Single platform, transparent pricing, measurable results. Highly recommended.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/professional-portrait-of-a-logistics-tec-1771991398566-467e5e2b.png"
},
{
id: "3",
name: "Elena Vasquez",
handle: "@evasquez",
testimonial: "LogisticNet's integrated approach bridges physical and digital seamlessly. Their team understood our complex international requirements immediately and delivered results.",
rating: 5,
id: "3", name: "Elena Vasquez", handle: "@evasquez", testimonial: "LogisticNet's integrated approach bridges physical and digital seamlessly. Their team understood our complex international requirements immediately and delivered results.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/professional-portrait-of-a-supply-chain--1771991399773-373496dc.png?_wi=2"
}
]}
@@ -115,46 +86,12 @@ export default function SolutionsPage() {
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
title="Solutions FAQ"
description="Common questions about LogisticNet's comprehensive supply chain solutions and implementation process."
tag="Implementation"
tagIcon={HelpCircle}
faqs={[
{
id: "1",
title: "How quickly can LogisticNet integrate with our existing ERP?",
content: "Most ERP integrations complete within 2-3 weeks. We support SAP, Oracle, NetSuite, and 20+ other platforms through pre-built connectors. Our integration team handles data mapping and provides comprehensive testing before go-live."
},
{
id: "2",
title: "What makes your China operations different from competitors?",
content: "We maintain direct relationships with top-tier manufacturers and have dedicated teams in Shanghai, Shenzhen, and Guangzhou. This enables faster customs clearance, better pricing, and quality control that most logistics providers cannot match."
},
{
id: "3",
title: "How do you handle seasonal demand fluctuations?",
content: "Our predictive analytics platform analyzes 3+ years of historical data plus external factors like weather, market trends, and economic indicators. This enables proactive capacity planning and inventory positioning 60-90 days in advance."
}
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/a-sophisticated-b2b-logistics-dashboard--1771991399151-d561d89d.png?_wi=2"
imageAlt="Logistics solutions dashboard interface"
mediaAnimation="slide-up"
mediaPosition="right"
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<FooterBase
logoText="LogisticNet"
copyrightText="© 2025 LogisticNet. All rights reserved. Integrated Logistics for the Modern Enterprise."
columns={[
{
title: "Solutions",
items: [
title: "Solutions", items: [
{ label: "Fleet Management", href: "/solutions" },
{ label: "Warehouse Network", href: "/about" },
{ label: "Demand Forecasting", href: "/solutions" },
@@ -162,8 +99,7 @@ export default function SolutionsPage() {
]
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Pricing", href: "/pricing" },
{ label: "Case Studies", href: "/solutions" },
@@ -171,8 +107,7 @@ export default function SolutionsPage() {
]
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Help Center", href: "#" },
{ label: "Contact Us", href: "/contact" },
{ label: "System Status", href: "#" },