Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a7e4f8d850 | |||
| 8d5fca3fc3 | |||
| 47c7730485 | |||
| 2df01c1d20 | |||
| 741dac9b88 | |||
| b2a87f3b11 | |||
| 1a415e6ff9 | |||
| 8727167bb9 | |||
| 095ae28442 | |||
| a0253123c9 | |||
| 04bb1ce41f | |||
| 30d5d8089e | |||
| 90fa205b85 | |||
| 1a4cff9334 | |||
| 3fc68f4f28 | |||
| ce3742f470 | |||
| 8d8ec1c714 | |||
| 304308b603 | |||
| ddb68b939c |
@@ -85,20 +85,16 @@ export default function ContactPage() {
|
|||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
icon: Phone,
|
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,
|
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,
|
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,
|
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"
|
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"
|
imageAlt="Celcius team supporting cold chain logistics"
|
||||||
|
|||||||
@@ -1,16 +1,74 @@
|
|||||||
import type { Metadata } from "next";
|
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 = {
|
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({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: {
|
}: Readonly<{
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}) {
|
}>) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en" suppressHydrationWarning>
|
||||||
<body>{children}
|
<ServiceWrapper>
|
||||||
|
<body
|
||||||
|
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
||||||
|
>
|
||||||
|
<Tag />
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1378,6 +1436,7 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -11,7 +11,7 @@ import TestimonialCardThirteen from "@/components/sections/testimonial/Testimoni
|
|||||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
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() {
|
export default function HomePage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
@@ -78,23 +78,17 @@ export default function HomePage() {
|
|||||||
]}
|
]}
|
||||||
carouselItems={[
|
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}
|
autoPlay={true}
|
||||||
autoPlayInterval={4000}
|
autoPlayInterval={4000}
|
||||||
@@ -108,20 +102,16 @@ export default function HomePage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
icon: Thermometer,
|
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,
|
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,
|
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,
|
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"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -136,17 +126,13 @@ export default function HomePage() {
|
|||||||
tag="4-Step Process"
|
tag="4-Step Process"
|
||||||
metrics={[
|
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"
|
metricsAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -160,28 +146,22 @@ export default function HomePage() {
|
|||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
icon: CheckCircle,
|
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,
|
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,
|
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,
|
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,
|
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,
|
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"
|
imageSrc="http://img.b2bpic.net/free-photo/vintage-landscape-photo_23-2149728863.jpg"
|
||||||
imageAlt="Celcius cold chain logistics technology"
|
imageAlt="Celcius cold chain logistics technology"
|
||||||
@@ -199,26 +179,28 @@ export default function HomePage() {
|
|||||||
testimonials={[
|
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,
|
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,
|
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,
|
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,
|
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}
|
showRating={true}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
carouselMode="buttons"
|
carouselMode="auto"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -229,8 +211,7 @@ export default function HomePage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
names={[
|
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}
|
speed={40}
|
||||||
showCard={true}
|
showCard={true}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user