diff --git a/src/pages/05_quotation/MainPage.vue b/src/pages/05_quotation/MainPage.vue
index d8f231cf..4786554d 100644
--- a/src/pages/05_quotation/MainPage.vue
+++ b/src/pages/05_quotation/MainPage.vue
@@ -1,9 +1,20 @@
-
+
diff --git a/src/pages/05_quotation/constants.ts b/src/pages/05_quotation/constants.ts
new file mode 100644
index 00000000..61634565
--- /dev/null
+++ b/src/pages/05_quotation/constants.ts
@@ -0,0 +1,20 @@
+export const productTreeDecoration = [
+ {
+ level: 0,
+ icon: 'mdi-folder-outline',
+ bg: 'hsla(var(--pink-6-hsl)/0.1)',
+ fg: 'var(--pink-6)',
+ },
+ {
+ level: 1,
+ icon: 'mdi-server-outline',
+ bg: 'hsla(var(--orange-5-hsl)/0.1)',
+ fg: 'var(--orange-5)',
+ },
+ {
+ level: 2,
+ icon: 'mdi-shopping-outline',
+ bg: 'hsla(var(--teal-10-hsl)/0.1)',
+ fg: 'var(--teal-10)',
+ },
+];