42 lines
954 B
TypeScript
42 lines
954 B
TypeScript
export interface NavigationItem {
|
|
title: string
|
|
to: string
|
|
icon?: string
|
|
component?: string
|
|
}
|
|
|
|
export const navigationConfig: NavigationItem[] = [
|
|
{
|
|
title: 'paperTubeWeightCalculate',
|
|
to: '/calculators/paper-tube-weight',
|
|
},
|
|
{
|
|
title: 'beltSpecificationCalculate',
|
|
to: '/calculators/belt-specification',
|
|
},
|
|
{
|
|
title: 'paperRollWeightLengthCalculate',
|
|
to: '/calculators/paper-roll-weight-length',
|
|
},
|
|
{
|
|
title: 'paperTubeProductionCalculate',
|
|
to: '/calculators/paper-tube-production',
|
|
},
|
|
{
|
|
title: 'paperTapeWidthAngleCalculate',
|
|
to: '/calculators/paper-tape-width-angle',
|
|
},
|
|
{
|
|
title: 'multiLayerPaperTapeWidthAngleCalculate',
|
|
to: '/calculators/multi-layer-paper-tape-width-angle',
|
|
},
|
|
{
|
|
title: '3LayerPaperStrawCalculate',
|
|
to: '/calculators/three-layer-paper-straw',
|
|
},
|
|
{
|
|
title: '4LayerPaperStrawCalculate',
|
|
to: '/calculators/four-layer-paper-straw',
|
|
},
|
|
]
|