Update src/app/layout.tsx

This commit is contained in:
2026-03-03 08:38:14 +00:00
parent 9419a26fe2
commit d67f4bd7ce

View File

@@ -17,24 +17,26 @@ const inter = Inter({
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Radhe Marketing - Industrial Castor & Trolley Wheels Supplier Ahmedabad", description: "Premium castor wheels, trolley wheels & rubber wheels supplier in Ahmedabad. Serving factories, warehouses, hospitals, workshops & logistics. Quality wheels for all industrial applications.", keywords: "castor wheels, trolley wheels, rubber wheels, industrial wheels, Ahmedabad, supplier, wholesale", metadataBase: new URL("https://radhemarketingwheels.com"), title: "Radhe Marketing - Industrial Castor & Trolley Wheels Supplier Ahmedabad", description: "Premium castor wheels, trolley wheels & rubber wheels supplier in Ahmedabad. Serving factories, warehouses, hospitals, workshops & logistics. Quality wheels for all industrial applications.", keywords: "castor wheels, trolley wheels, rubber wheels, industrial wheels, Ahmedabad, supplier, wholesale", metadataBase: new URL("https://radhemarketingwheels.com"),
alternates: { alternates: {
canonical: "https://radhemarketingwheels.com"}, canonical: "https://radhemarketingwheels.com"
},
openGraph: { openGraph: {
title: "Radhe Marketing - Industrial Wheels Supplier", description: "Quality castor wheels, trolley wheels, and rubber wheels for factories, warehouses, hospitals, and logistics. Based in Ahmedabad, Gujarat.", url: "https://radhemarketingwheels.com", siteName: "Radhe Marketing", type: "website", images: [ title: "Radhe Marketing - Industrial Wheels Supplier", description: "Quality castor wheels, trolley wheels, and rubber wheels for factories, warehouses, hospitals, and logistics. Based in Ahmedabad, Gujarat.", url: "https://radhemarketingwheels.com", siteName: "Radhe Marketing", type: "website", images: [
{ {
url: "http://img.b2bpic.net/free-photo/warehouse-workers-checking-inventory-large-distribution-warehouse-storage_342744-1538.jpg", alt: "Industrial warehouse with Radhe Marketing wheels"}, url: "http://img.b2bpic.net/free-photo/warehouse-workers-checking-inventory-large-distribution-warehouse-storage_342744-1538.jpg", alt: "Industrial warehouse with Radhe Marketing wheels"
], }
]
}, },
twitter: { twitter: {
card: "summary_large_image", title: "Radhe Marketing - Industrial Wheels Supplier", description: "Premium castor wheels and trolley wheels for industrial applications", images: ["http://img.b2bpic.net/free-photo/warehouse-workers-checking-inventory-large-distribution-warehouse-storage_342744-1538.jpg"], card: "summary_large_image", title: "Radhe Marketing - Industrial Wheels Supplier", description: "Premium castor wheels and trolley wheels for industrial applications", images: ["http://img.b2bpic.net/free-photo/warehouse-workers-checking-inventory-large-distribution-warehouse-storage_342744-1538.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;
}>) { }>) {