mirror of
https://github.com/vercel/commerce.git
synced 2025-05-03 16:27:50 +00:00
27 lines
784 B
TypeScript
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,
|
|
},
|
|
}
|