diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 74f9eb1..cf420d1 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -85,16 +85,20 @@ 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" @@ -114,4 +118,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 08975b9..8ff69dc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,16 @@ 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 & 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, - }, -}; + title: "Celcius - Cold Chain Logistics", description: "Reliable reefer logistics for temperature-sensitive goods"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}