19 Commits

Author SHA1 Message Date
a7e4f8d850 Switch to version 1: modified src/app/page.tsx 2026-03-05 09:46:02 +00:00
8d5fca3fc3 Switch to version 1: modified src/app/layout.tsx 2026-03-05 09:46:02 +00:00
47c7730485 Switch to version 1: modified src/app/contact/page.tsx 2026-03-05 09:46:01 +00:00
2df01c1d20 Switch to version 2: modified src/app/page.tsx 2026-03-05 09:43:38 +00:00
741dac9b88 Switch to version 2: modified src/app/layout.tsx 2026-03-05 09:43:37 +00:00
b2a87f3b11 Switch to version 3: modified src/app/page.tsx 2026-03-05 09:24:11 +00:00
1a415e6ff9 Switch to version 3: modified src/app/layout.tsx 2026-03-05 09:24:11 +00:00
8727167bb9 Switch to version 2: modified src/app/page.tsx 2026-03-05 09:23:42 +00:00
095ae28442 Switch to version 2: modified src/app/layout.tsx 2026-03-05 09:23:41 +00:00
a0253123c9 Switch to version 2: modified src/app/contact/page.tsx 2026-03-05 09:23:41 +00:00
04bb1ce41f Switch to version 1: modified src/app/page.tsx 2026-03-05 09:23:08 +00:00
30d5d8089e Switch to version 1: modified src/app/layout.tsx 2026-03-05 09:23:07 +00:00
90fa205b85 Switch to version 1: modified src/app/contact/page.tsx 2026-03-05 09:23:07 +00:00
1a4cff9334 Switch to version 2: modified src/app/page.tsx 2026-03-05 09:23:00 +00:00
3fc68f4f28 Switch to version 2: modified src/app/layout.tsx 2026-03-05 09:23:00 +00:00
ce3742f470 Merge version_3 into main
Merge version_3 into main
2026-03-05 09:08:55 +00:00
8d8ec1c714 Update src/app/page.tsx 2026-03-05 09:08:51 +00:00
304308b603 Update src/app/layout.tsx 2026-03-05 09:08:51 +00:00
ddb68b939c Merge version_2 into main
Merge version_2 into main
2026-03-05 09:04:55 +00:00
3 changed files with 104 additions and 68 deletions

View File

@@ -85,20 +85,16 @@ export default function ContactPage() {
bulletPoints={[
{
icon: Phone,
title: "Call Us", description: "+91 98765 43210 - Available 24/7 for urgent logistics inquiries and immediate support."
},
title: "Call Us", description: "+91 98765 43210 - Available 24/7 for urgent logistics inquiries and immediate support."},
{
icon: Mail,
title: "Email Us", description: "support@celcius.com - Send your detailed requirements and we'll respond within 2 hours."
},
title: "Email Us", description: "support@celcius.com - Send your detailed requirements and we'll respond within 2 hours."},
{
icon: MapPin,
title: "Visit Our Office", description: "Navi Mumbai Logistics Hub - Meet our team for enterprise consultations and partnership discussions."
},
title: "Visit Our Office", description: "Navi Mumbai Logistics Hub - Meet our team for enterprise consultations and partnership discussions."},
{
icon: Clock,
title: "Response Time", description: "Phone inquiries: Immediate | Email inquiries: 2 hours | Quote requests: Same day turnaround."
},
title: "Response Time", description: "Phone inquiries: Immediate | Email inquiries: 2 hours | Quote requests: Same day turnaround."},
]}
imageSrc="http://img.b2bpic.net/free-photo/smart-factory-expert-using-digital-device-app-test-automated-systems-closeup_482257-126768.jpg?_wi=3"
imageAlt="Celcius team supporting cold chain logistics"
@@ -118,4 +114,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -1,16 +1,74 @@
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"],
});
export const metadata: Metadata = {
title: "Celcius - Cold Chain Logistics", description: "Reliable reefer logistics for temperature-sensitive goods"};
title: "Celcius - Cold Chain Logistics & Reefer Transport India",
description: "Temperature-controlled logistics for food, pharmaceuticals, and perishable goods. Get reliable reefer truck transport in Navi Mumbai. Call now for instant quotes.",
keywords: "reefer logistics, cold chain logistics India, temperature controlled transport, refrigerated truck logistics, perishable goods transport, cold storage transportation",
metadataBase: new URL("https://celcius.com"),
alternates: {
canonical: "https://celcius.com",
},
openGraph: {
title: "Celcius - Trusted Cold Chain Logistics Partner",
description: "Modernizing perishable goods transportation with smart load matching and real-time temperature monitoring.",
url: "https://celcius.com",
siteName: "Celcius",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/truck-driver-inspecting-vehicle-trailer-tires-before-driving_342744-1266.jpg",
alt: "Celcius refrigerated truck for cold chain logistics",
},
],
},
twitter: {
card: "summary_large_image",
title: "Celcius - Cold Chain Logistics Partner",
description: "Temperature-controlled transport for perishable goods - Food, Pharma, Dairy & More",
images: ["http://img.b2bpic.net/free-photo/truck-driver-inspecting-vehicle-trailer-tires-before-driving_342744-1266.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: {
}: Readonly<{
children: React.ReactNode;
}) {
}>) {
return (
<html lang="en">
<body>{children}
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1378,6 +1436,7 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -11,7 +11,7 @@ import TestimonialCardThirteen from "@/components/sections/testimonial/Testimoni
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Thermometer, Building2, Network, Globe, CheckCircle, Zap, Eye, Users, Users2, Award, Truck, Package } from "lucide-react";
import { Thermometer, Building2, Network, Globe, CheckCircle, Zap, Eye, Users } from "lucide-react";
export default function HomePage() {
const navItems = [
@@ -78,23 +78,17 @@ export default function HomePage() {
]}
carouselItems={[
{
id: "carousel-1", imageSrc: "http://img.b2bpic.net/free-photo/truck-driver-inspecting-vehicle-trailer-tires-before-driving_342744-1266.jpg?_wi=1", imageAlt: "Refrigerated truck for temperature-controlled transport"
},
id: "carousel-1", imageSrc: "http://img.b2bpic.net/free-photo/truck-driver-inspecting-vehicle-trailer-tires-before-driving_342744-1266.jpg?_wi=1", imageAlt: "Refrigerated truck for temperature-controlled transport"},
{
id: "carousel-2", imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-digital-device-app-test-automated-systems-closeup_482257-126768.jpg?_wi=1", imageAlt: "Cold chain supply network"
},
id: "carousel-2", imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-digital-device-app-test-automated-systems-closeup_482257-126768.jpg?_wi=1", imageAlt: "Cold chain supply network"},
{
id: "carousel-3", imageSrc: "http://img.b2bpic.net/free-photo/digital-tablet-online-learning_53876-97299.jpg?_wi=1", imageAlt: "Logistics dashboard interface"
},
id: "carousel-3", imageSrc: "http://img.b2bpic.net/free-photo/digital-tablet-online-learning_53876-97299.jpg?_wi=1", imageAlt: "Logistics dashboard interface"},
{
id: "carousel-4", imageSrc: "http://img.b2bpic.net/free-photo/truck-driver-inspecting-vehicle-trailer-tires-before-driving_342744-1266.jpg?_wi=2", imageAlt: "Refrigerated transport fleet"
},
id: "carousel-4", imageSrc: "http://img.b2bpic.net/free-photo/truck-driver-inspecting-vehicle-trailer-tires-before-driving_342744-1266.jpg?_wi=2", imageAlt: "Refrigerated transport fleet"},
{
id: "carousel-5", imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-digital-device-app-test-automated-systems-closeup_482257-126768.jpg?_wi=2", imageAlt: "Temperature monitoring system"
},
id: "carousel-5", imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-digital-device-app-test-automated-systems-closeup_482257-126768.jpg?_wi=2", imageAlt: "Temperature monitoring system"},
{
id: "carousel-6", imageSrc: "http://img.b2bpic.net/free-photo/digital-tablet-online-learning_53876-97299.jpg?_wi=2", imageAlt: "Real-time tracking dashboard"
},
id: "carousel-6", imageSrc: "http://img.b2bpic.net/free-photo/digital-tablet-online-learning_53876-97299.jpg?_wi=2", imageAlt: "Real-time tracking dashboard"},
]}
autoPlay={true}
autoPlayInterval={4000}
@@ -108,20 +102,16 @@ export default function HomePage() {
features={[
{
icon: Thermometer,
title: "Temperature Controlled Transport", description: "Refrigerated trucks for food, pharmaceuticals, dairy and other perishable goods with real-time monitoring"
},
title: "Temperature Controlled Transport", description: "Refrigerated trucks for food, pharmaceuticals, dairy and other perishable goods with real-time monitoring"},
{
icon: Building2,
title: "Enterprise Logistics Solutions", description: "Dedicated logistics support for large-scale shipments and recurring transportation needs"
},
title: "Enterprise Logistics Solutions", description: "Dedicated logistics support for large-scale shipments and recurring transportation needs"},
{
icon: Network,
title: "Smart Load Matching", description: "Technology-enabled system that connects enterprises with available refrigerated trucks instantly"
},
title: "Smart Load Matching", description: "Technology-enabled system that connects enterprises with available refrigerated trucks instantly"},
{
icon: Globe,
title: "Cold Chain Network", description: "Access to reliable transporters and temperature-controlled vehicles across all logistics routes"
},
title: "Cold Chain Network", description: "Access to reliable transporters and temperature-controlled vehicles across all logistics routes"},
]}
animationType="slide-up"
textboxLayout="default"
@@ -136,17 +126,13 @@ export default function HomePage() {
tag="4-Step Process"
metrics={[
{
id: "step-1", value: "1", description: "Submit Load Details - Provide shipment details, pickup location, delivery destination, and temperature requirements"
},
id: "step-1", value: "1", description: "Submit Load Details - Provide shipment details, pickup location, delivery destination, and temperature requirements"},
{
id: "step-2", value: "2", description: "Get Matched With Refrigerated Truck - Our smart system finds the perfect temperature-controlled vehicle for your load"
},
id: "step-2", value: "2", description: "Get Matched With Refrigerated Truck - Our smart system finds the perfect temperature-controlled vehicle for your load"},
{
id: "step-3", value: "3", description: "Temperature Controlled Transport - Your goods travel safely with real-time temperature monitoring"
},
id: "step-3", value: "3", description: "Temperature Controlled Transport - Your goods travel safely with real-time temperature monitoring"},
{
id: "step-4", value: "4", description: "Safe & On-Time Delivery - Receive your perishable goods at destination, maintained at perfect temperature"
},
id: "step-4", value: "4", description: "Safe & On-Time Delivery - Receive your perishable goods at destination, maintained at perfect temperature"},
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
@@ -160,28 +146,22 @@ export default function HomePage() {
bulletPoints={[
{
icon: CheckCircle,
title: "Reliable Reefer Transport Network", description: "Trusted by enterprises across India with a proven track record of on-time deliveries"
},
title: "Reliable Reefer Transport Network", description: "Trusted by enterprises across India with a proven track record of on-time deliveries"},
{
icon: Thermometer,
title: "Temperature-Safe Delivery", description: "Advanced monitoring ensures your perishables arrive at exactly the right temperature"
},
title: "Temperature-Safe Delivery", description: "Advanced monitoring ensures your perishables arrive at exactly the right temperature"},
{
icon: Building2,
title: "Enterprise-Grade Logistics Support", description: "Dedicated team handles large-scale shipments and recurring transportation needs"
},
title: "Enterprise-Grade Logistics Support", description: "Dedicated team handles large-scale shipments and recurring transportation needs"},
{
icon: Zap,
title: "Efficient Load Matching", description: "Technology-driven system connects you with available trucks in minutes, not days"
},
title: "Efficient Load Matching", description: "Technology-driven system connects you with available trucks in minutes, not days"},
{
icon: Eye,
title: "Transparent Pricing", description: "Clear, competitive rates with no hidden charges - know exactly what you're paying"
},
title: "Transparent Pricing", description: "Clear, competitive rates with no hidden charges - know exactly what you're paying"},
{
icon: Users,
title: "Experienced Logistics Team", description: "Industry veterans with decades of cold chain expertise at your service"
},
title: "Experienced Logistics Team", description: "Industry veterans with decades of cold chain expertise at your service"},
]}
imageSrc="http://img.b2bpic.net/free-photo/vintage-landscape-photo_23-2149728863.jpg"
imageAlt="Celcius cold chain logistics technology"
@@ -199,26 +179,28 @@ export default function HomePage() {
testimonials={[
{
id: "1", name: "Rajesh Kumar", handle: "@rajeshsharmafood", testimonial: "Their temperature-controlled transport was flawless. The logistics team handled our shipment professionally from start to finish. We trust Celcius for all our perishable goods transportation.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg", imageAlt: "Rajesh Kumar"
},
imageSrc: "http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg", imageAlt: "Rajesh Kumar"},
{
id: "2", name: "Priya Desai", handle: "@priyadesai_pharma", testimonial: "Celcius has transformed how we manage our pharmaceutical distribution. Their real-time monitoring and reliable network ensure medicines arrive safely every time.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg", imageAlt: "Priya Desai"
},
imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg", imageAlt: "Priya Desai"},
{
id: "3", name: "Vikram Singh", handle: "@vikramsingh_dairy", testimonial: "The smart load matching system saved us hours of coordination time. Celcius connects us with the right refrigerated trucks instantly. Highly professional service.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", imageAlt: "Vikram Singh"
},
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", imageAlt: "Vikram Singh"},
{
id: "4", name: "Meera Patel", handle: "@meerapatel_logistics", testimonial: "We've partnered with Celcius for enterprise-scale logistics. Their dedicated support and transparent pricing make them stand out from other providers in the market.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/man-cafe_1098-13701.jpg", imageAlt: "Meera Patel"
},
imageSrc: "http://img.b2bpic.net/free-photo/man-cafe_1098-13701.jpg", imageAlt: "Meera Patel"},
{
id: "5", name: "Arun Reddy", handle: "@arunreddy_export", testimonial: "Perfect for our agricultural produce exports. Celcius handles everything from load matching to final delivery with precision. Our customers receive fresh products every time.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-equity-analyst-working-proprietary-firm-reading-annual-company-reports-evaluate_482257-132953.jpg", imageAlt: "Arun Reddy"},
{
id: "6", name: "Deepak Nair", handle: "@deepaknair_fmcg", testimonial: "The cold chain network is incredibly reliable. We've reduced our logistics costs by 20% while improving delivery times. Celcius is exactly what the industry needed.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businessman-posing-outside_74855-1183.jpg", imageAlt: "Deepak Nair"},
]}
showRating={true}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
carouselMode="buttons"
carouselMode="auto"
/>
</div>
@@ -229,8 +211,7 @@ export default function HomePage() {
textboxLayout="default"
useInvertedBackground={false}
names={[
"Food & Beverage", "Dairy Production", "Pharmaceuticals", "Frozen Foods", "Agriculture Produce", "FMCG Distribution", "Cold Storage Providers", "Restaurant Chains"
]}
"Food & Beverage", "Dairy Production", "Pharmaceuticals", "Frozen Foods", "Agriculture Produce", "FMCG Distribution", "Cold Storage Providers", "Restaurant Chains"]}
speed={40}
showCard={true}
/>
@@ -262,4 +243,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}