diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8ff69dc..08975b9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - -
{children} + +