mirror of
https://github.com/vercel/commerce.git
synced 2025-04-27 21:37:50 +00:00
25 lines
741 B
TypeScript
25 lines
741 B
TypeScript
import PALLET_TRUCKS from '../images/industrial/top_navbar/pallet_trucks.jpg'
|
|
import WAREHOUSE_RACKS from '../images/industrial/top_navbar/warehouse_racks.png'
|
|
import WAREHOUSE_ACCESSORIES from '../images/industrial/top_navbar/warehouse_acc.png'
|
|
import FORKLIFTS from '../images/industrial/top_navbar/forklifts.png'
|
|
import FENCES from '../images/industrial/top_navbar/fences.png'
|
|
|
|
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,
|
|
},
|
|
}
|