1 Commits

Author SHA1 Message Date
61e67305a1 Update src/app/layout.tsx 2026-03-07 01:31:42 +00:00

View File

@@ -16,24 +16,26 @@ const inter = Inter({
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Professional Truck Maintenance & Repair | TruckCare", description: "Expert truck maintenance and repair services available 24/7. ASE-certified technicians, emergency support, and fleet contracts for commercial vehicles.", keywords: "truck maintenance, truck repair, commercial truck service, fleet maintenance, truck diagnostics, 24/7 truck service", metadataBase: new URL("https://truckcare.com"), title: "Professional Truck Maintenance & Repair | TruckCare", description: "Expert truck maintenance and repair services available 24/7. ASE-certified technicians, emergency support, and fleet contracts for commercial vehicles.", keywords: "truck maintenance, truck repair, commercial truck service, fleet maintenance, truck diagnostics, 24/7 truck service", metadataBase: new URL("https://truckcare.com"),
alternates: { alternates: {
canonical: "https://truckcare.com"}, canonical: "https://truckcare.com"
},
openGraph: { openGraph: {
title: "Professional Truck Maintenance & Repair", description: "Trusted truck maintenance services for fleets and owner-operators. Expert technicians, emergency support, 24/7 availability.", url: "https://truckcare.com", siteName: "TruckCare", type: "website", images: [ title: "Professional Truck Maintenance & Repair", description: "Trusted truck maintenance services for fleets and owner-operators. Expert technicians, emergency support, 24/7 availability.", url: "https://truckcare.com", siteName: "TruckCare", type: "website", images: [
{ {
url: "http://img.b2bpic.net/free-photo/red-steel-tool-box-garage_613910-13498.jpg", alt: "professional truck maintenance garage service"}, url: "http://img.b2bpic.net/free-photo/red-steel-tool-box-garage_613910-13498.jpg", alt: "professional truck maintenance garage service"
], }
]
}, },
twitter: { twitter: {
card: "summary_large_image", title: "Professional Truck Maintenance & Repair", description: "Expert truck maintenance services available 24/7", images: ["http://img.b2bpic.net/free-photo/red-steel-tool-box-garage_613910-13498.jpg"], card: "summary_large_image", title: "Professional Truck Maintenance & Repair", description: "Expert truck maintenance services available 24/7", images: ["http://img.b2bpic.net/free-photo/red-steel-tool-box-garage_613910-13498.jpg"]
}, },
robots: { robots: {
index: true, index: true,
follow: true, follow: true
}, }
}; };
export default function RootLayout({ export default function RootLayout({
children, children
}: Readonly<{ }: Readonly<{
children: React.ReactNode; children: React.ReactNode;
}>) { }>) {