diff --git a/src/config/navigation.ts b/src/config/navigation.ts
new file mode 100644
index 0000000..0d4c494
--- /dev/null
+++ b/src/config/navigation.ts
@@ -0,0 +1,33 @@
+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',
+ },
+]
diff --git a/src/layouts/CalculatorLayout.vue b/src/layouts/CalculatorLayout.vue
index 53588a3..a45e502 100644
--- a/src/layouts/CalculatorLayout.vue
+++ b/src/layouts/CalculatorLayout.vue
@@ -133,9 +133,11 @@
class="pa-6"
fluid
/>
-
-
-
+
+
+
+
+
@@ -156,6 +158,7 @@