mirror of
https://github.com/vercel/commerce.git
synced 2025-05-02 07:47:50 +00:00
27 lines
749 B
TypeScript
27 lines
749 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'
|
|
|
|
//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,
|
|
},
|
|
}
|