commerce/data/Industrial.tsx
2025-03-28 11:36:41 -04:00

27 lines
784 B
TypeScript

import PALLET_TRUCKS from '../app/images/industrial/top_navbar/pallet_trucks.jpg'
import WAREHOUSE_RACKS from '../app/images/industrial/top_navbar/warehouse_racks.png'
import WAREHOUSE_ACCESSORIES from '../app/images/industrial/top_navbar/warehouse_acc.png'
import FORKLIFTS from '../app/images/industrial/top_navbar/forklifts.png'
import FENCES from '../app/images/industrial/top_navbar/fences.png'
//data/Industrial.tsx
export const INDUSTRIAL_DATA = {
PALLET_TRUCKS: {
navbarImage: PALLET_TRUCKS,
// contentImage: LATEX_FOAM_CONTENT_IMAGE,
},
WAREHOUSE_RACKS: {
navbarImage: WAREHOUSE_RACKS,
},
WAREHOUSE_ACCESSORIES: {
navbarImage: WAREHOUSE_ACCESSORIES,
},
FORKLIFTS: {
navbarImage: FORKLIFTS,
},
FENCES: {
navbarImage: FENCES,
},
}