@lightspeed/crane 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (125) hide show
  1. package/dist/app.d.mts +20 -2
  2. package/dist/app.d.ts +20 -2
  3. package/dist/app.mjs +1 -1
  4. package/dist/cli.mjs +10 -23
  5. package/package.json +6 -5
  6. package/template/footers/example-footer/ExampleFooter.vue +6 -1
  7. package/template/footers/example-footer/assets/cart.svg +19 -0
  8. package/template/footers/example-footer/component/LegalLinks.vue +2 -2
  9. package/template/footers/example-footer/component/MadeWith.vue +23 -0
  10. package/template/footers/example-footer/component/ReportAbuse.vue +4 -3
  11. package/template/footers/example-footer/showcases/1.ts +1 -1
  12. package/template/headers/example-header/ExampleHeader.vue +17 -2
  13. package/template/headers/example-header/component/Account.vue +4 -4
  14. package/template/headers/example-header/component/Cart.vue +14 -33
  15. package/template/headers/example-header/settings/content.ts +1 -9
  16. package/template/headers/example-header/settings/design.ts +1 -23
  17. package/template/package.json +1 -1
  18. package/template/reference/sections/about-us/AboutUs.vue +73 -0
  19. package/template/reference/sections/about-us/assets/our_company_in_numbers.jpg +0 -0
  20. package/template/reference/sections/about-us/assets/our_company_in_numbers_preview.jpg +0 -0
  21. package/template/reference/sections/about-us/assets/our_team.jpg +0 -0
  22. package/template/reference/sections/about-us/assets/our_team_preview.jpg +0 -0
  23. package/template/reference/sections/about-us/client.ts +6 -0
  24. package/template/reference/sections/about-us/component/Image.vue +94 -0
  25. package/template/reference/sections/about-us/component/Stats.vue +155 -0
  26. package/template/reference/sections/about-us/component/Title.vue +32 -0
  27. package/template/reference/sections/about-us/server.ts +6 -0
  28. package/template/reference/sections/about-us/settings/content.ts +64 -0
  29. package/template/reference/sections/about-us/settings/design.ts +74 -0
  30. package/template/reference/sections/about-us/settings/layout.ts +12 -0
  31. package/template/reference/sections/about-us/settings/translations.ts +151 -0
  32. package/template/reference/sections/about-us/showcases/1.ts +176 -0
  33. package/template/reference/sections/about-us/showcases/2.ts +160 -0
  34. package/template/reference/sections/about-us/showcases/translations.ts +259 -0
  35. package/template/reference/sections/about-us/type.ts +5 -0
  36. package/template/reference/sections/about-us/util/visibility-provider.ts +27 -0
  37. package/template/reference/sections/intro-slider/IntroSlider.vue +77 -0
  38. package/template/reference/sections/intro-slider/assets/bike_1.jpg +0 -0
  39. package/template/reference/sections/intro-slider/assets/bike_1@2x.jpg +0 -0
  40. package/template/reference/sections/intro-slider/assets/bike_2.jpg +0 -0
  41. package/template/reference/sections/intro-slider/assets/bike_2@2x.jpg +0 -0
  42. package/template/reference/sections/intro-slider/assets/bike_3.jpg +0 -0
  43. package/template/reference/sections/intro-slider/assets/bike_3@2x.jpg +0 -0
  44. package/template/reference/sections/intro-slider/assets/bike_4.jpg +0 -0
  45. package/template/reference/sections/intro-slider/assets/bike_4@2x.jpg +0 -0
  46. package/template/reference/sections/intro-slider/assets/bike_5.jpg +0 -0
  47. package/template/reference/sections/intro-slider/assets/bike_5@2x.jpg +0 -0
  48. package/template/reference/sections/intro-slider/assets/bike_6.jpg +0 -0
  49. package/template/reference/sections/intro-slider/assets/bike_6@2x.jpg +0 -0
  50. package/template/reference/sections/intro-slider/assets/category_1.jpg +0 -0
  51. package/template/reference/sections/intro-slider/assets/category_1@2x.jpg +0 -0
  52. package/template/reference/sections/intro-slider/assets/category_2.jpg +0 -0
  53. package/template/reference/sections/intro-slider/assets/category_2@2x.jpg +0 -0
  54. package/template/reference/sections/intro-slider/assets/category_3.jpg +0 -0
  55. package/template/reference/sections/intro-slider/assets/category_3@2x.jpg +0 -0
  56. package/template/reference/sections/intro-slider/assets/category_5.jpg +0 -0
  57. package/template/reference/sections/intro-slider/assets/category_5@2x.jpg +0 -0
  58. package/template/reference/sections/intro-slider/assets/category_6.jpg +0 -0
  59. package/template/reference/sections/intro-slider/assets/category_6@2x.jpg +0 -0
  60. package/template/reference/sections/intro-slider/assets/custom_section_showcase_1_preview.png +0 -0
  61. package/template/reference/sections/intro-slider/assets/custom_section_showcase_2_preview.png +0 -0
  62. package/template/reference/sections/intro-slider/client.ts +5 -0
  63. package/template/reference/sections/intro-slider/component/Slider.vue +235 -0
  64. package/template/reference/sections/intro-slider/component/Title.vue +106 -0
  65. package/template/reference/sections/intro-slider/entity/color.ts +4 -0
  66. package/template/reference/sections/intro-slider/server.ts +5 -0
  67. package/template/reference/sections/intro-slider/settings/content.ts +43 -0
  68. package/template/reference/sections/intro-slider/settings/design.ts +88 -0
  69. package/template/reference/sections/intro-slider/settings/layout.ts +12 -0
  70. package/template/reference/sections/intro-slider/settings/translations.ts +53 -0
  71. package/template/reference/sections/intro-slider/showcases/1.ts +274 -0
  72. package/template/reference/sections/intro-slider/showcases/2.ts +270 -0
  73. package/template/reference/sections/intro-slider/showcases/translations.ts +88 -0
  74. package/template/reference/sections/intro-slider/type.ts +5 -0
  75. package/template/reference/sections/tag-lines/TagLines.vue +158 -0
  76. package/template/reference/sections/tag-lines/assets/explore_our_holiday_gift_guide.jpg +0 -0
  77. package/template/reference/sections/tag-lines/assets/fall_is_here.jpg +0 -0
  78. package/template/reference/sections/tag-lines/assets/fall_is_here_preview.jpg +0 -0
  79. package/template/reference/sections/tag-lines/assets/folding_bikes.jpg +0 -0
  80. package/template/reference/sections/tag-lines/assets/hybrid_bikes.jpg +0 -0
  81. package/template/reference/sections/tag-lines/assets/mountain_and_road_bikes.jpg +0 -0
  82. package/template/reference/sections/tag-lines/assets/shop_chelsea_boots.jpg +0 -0
  83. package/template/reference/sections/tag-lines/assets/sweater_weather.jpg +0 -0
  84. package/template/reference/sections/tag-lines/assets/what_we_sell.jpg +0 -0
  85. package/template/reference/sections/tag-lines/assets/what_we_sell_preview.jpg +0 -0
  86. package/template/reference/sections/tag-lines/client.ts +5 -0
  87. package/template/reference/sections/tag-lines/component/HighlightedText.vue +50 -0
  88. package/template/reference/sections/tag-lines/component/SectionImage.vue +78 -0
  89. package/template/reference/sections/tag-lines/component/Title.vue +51 -0
  90. package/template/reference/sections/tag-lines/composables/highlighted-text-image-list.ts +34 -0
  91. package/template/reference/sections/tag-lines/server.ts +5 -0
  92. package/template/reference/sections/tag-lines/settings/content.ts +37 -0
  93. package/template/reference/sections/tag-lines/settings/design.ts +81 -0
  94. package/template/reference/sections/tag-lines/settings/layout.ts +12 -0
  95. package/template/reference/sections/tag-lines/settings/translations.ts +61 -0
  96. package/template/reference/sections/tag-lines/showcases/1.ts +190 -0
  97. package/template/reference/sections/tag-lines/showcases/2.ts +190 -0
  98. package/template/reference/sections/tag-lines/showcases/translations.ts +49 -0
  99. package/template/reference/sections/tag-lines/type.ts +5 -0
  100. package/template/reference/shared/components/Button.vue +151 -0
  101. package/template/reference/shared/components/SectionWrapper.vue +26 -0
  102. package/template/reference/shared/components/Tagline.vue +45 -0
  103. package/template/reference/shared/utils/color.ts +16 -0
  104. package/template/reference/shared/utils/styles.ts +12 -0
  105. package/template/reference/templates/assets/reference_template_apparel_cover_image.jpg +0 -0
  106. package/template/reference/templates/assets/reference_template_bike_cover_image.jpg +0 -0
  107. package/template/reference/templates/reference-template-apparel.ts +44 -0
  108. package/template/reference/templates/reference-template-bike.ts +44 -0
  109. package/template/sections/example-section/ExampleSection.vue +8 -19
  110. package/template/sections/example-section/assets/bike_accessories_high.jpg +0 -0
  111. package/template/sections/example-section/assets/bike_accessories_low.jpg +0 -0
  112. package/template/sections/example-section/assets/bike_new_arrivals_high.jpg +0 -0
  113. package/template/sections/example-section/assets/bike_new_arrivals_low.jpg +0 -0
  114. package/template/sections/example-section/assets/custom_section_showcase_3_preview.jpg +0 -0
  115. package/template/sections/example-section/assets/fixed_gears_high.jpg +0 -0
  116. package/template/sections/example-section/assets/fixed_gears_low.jpg +0 -0
  117. package/template/sections/example-section/assets/repair_service_high.jpg +0 -0
  118. package/template/sections/example-section/assets/repair_service_low.jpg +0 -0
  119. package/template/sections/example-section/settings/translations.ts +39 -7
  120. package/template/sections/example-section/showcases/3.ts +198 -0
  121. package/template/sections/example-section/showcases/translations.ts +49 -1
  122. package/template/shared/{LanguageSelector.vue → components/LanguageSelector.vue} +1 -1
  123. package/template/shared/components/SectionWrapper.vue +26 -0
  124. package/template/templates/template.ts +2 -1
  125. package/types.d.ts +96 -70
@@ -0,0 +1,274 @@
1
+ export default {
2
+ showcaseId: '1',
3
+ layoutId: 'Narrow_Title_And_Images_With_Border_Radius',
4
+ previewImage: {
5
+ set: {
6
+ ORIGINAL: {
7
+ url: 'custom_section_showcase_1_preview.png',
8
+ },
9
+ },
10
+ },
11
+ blockName: '$label.showcase_1.blockName',
12
+ content: {
13
+ section_title: {
14
+ type: 'TEXTAREA',
15
+ text: '$label.showcase_1.section_title.text',
16
+ },
17
+ section_description: {
18
+ type: 'TEXTAREA',
19
+ text: '$label.showcase_1.section_description.text',
20
+ },
21
+ section_tagline: {
22
+ type: 'INPUTBOX',
23
+ text: '$label.showcase_1.section_tagline.text',
24
+ },
25
+ section_button: {
26
+ type: 'BUTTON',
27
+ title: '$label.showcase_1.section_button.title',
28
+ },
29
+ slider: {
30
+ type: 'DECK',
31
+ cards: [
32
+ {
33
+ settings: {
34
+ image_text: {
35
+ type: 'INPUTBOX',
36
+ text: '$label.showcase_1.slide_text_1.text',
37
+ },
38
+ image_content: {
39
+ type: 'IMAGE',
40
+ imageData: {
41
+ set: {
42
+ LOW_RES: {
43
+ url: 'category_1.jpg',
44
+ },
45
+ MOBILE_WEBP_LOW_RES: {
46
+ url: 'category_1.jpg',
47
+ },
48
+ MOBILE_WEBP_HI_RES: {
49
+ url: 'category_1@2x.jpg',
50
+ },
51
+ WEBP_LOW_RES: {
52
+ url: 'category_1@2x.jpg',
53
+ },
54
+ WEBP_HI_2X_RES: {
55
+ url: 'category_1@2x.jpg',
56
+ },
57
+ },
58
+ borderInfo: {},
59
+ },
60
+ },
61
+ },
62
+ },
63
+ {
64
+ settings: {
65
+ image_text: {
66
+ type: 'INPUTBOX',
67
+ text: '$label.showcase_1.slide_text_2.text',
68
+ },
69
+ image_content: {
70
+ type: 'IMAGE',
71
+ imageData: {
72
+ set: {
73
+ LOW_RES: {
74
+ url: 'category_2.jpg',
75
+ },
76
+ MOBILE_WEBP_LOW_RES: {
77
+ url: 'category_2.jpg',
78
+ },
79
+ MOBILE_WEBP_HI_RES: {
80
+ url: 'category_2@2x.jpg',
81
+ },
82
+ WEBP_LOW_RES: {
83
+ url: 'category_2@2x.jpg',
84
+ },
85
+ WEBP_HI_2X_RES: {
86
+ url: 'category_2@2x.jpg',
87
+ },
88
+ },
89
+ borderInfo: {},
90
+ },
91
+ },
92
+ },
93
+ },
94
+ {
95
+ settings: {
96
+ image_text: {
97
+ type: 'INPUTBOX',
98
+ text: '$label.showcase_1.slide_text_3.text',
99
+ },
100
+ image_content: {
101
+ type: 'IMAGE',
102
+ imageData: {
103
+ set: {
104
+ LOW_RES: {
105
+ url: 'category_3.jpg',
106
+ },
107
+ MOBILE_WEBP_LOW_RES: {
108
+ url: 'category_3.jpg',
109
+ },
110
+ MOBILE_WEBP_HI_RES: {
111
+ url: 'category_3@2x.jpg',
112
+ },
113
+ WEBP_LOW_RES: {
114
+ url: 'category_3@2x.jpg',
115
+ },
116
+ WEBP_HI_2X_RES: {
117
+ url: 'category_3@2x.jpg',
118
+ },
119
+ },
120
+ borderInfo: {},
121
+ },
122
+ },
123
+ },
124
+ },
125
+ {
126
+ settings: {
127
+ image_text: {
128
+ type: 'INPUTBOX',
129
+ text: '$label.showcase_1.slide_text_4.text',
130
+ },
131
+ image_content: {
132
+ type: 'IMAGE',
133
+ imageData: {
134
+ set: {
135
+ LOW_RES: {
136
+ url: 'category_4.jpg',
137
+ },
138
+ MOBILE_WEBP_LOW_RES: {
139
+ url: 'category_4.jpg',
140
+ },
141
+ MOBILE_WEBP_HI_RES: {
142
+ url: 'category_4@2x.jpg',
143
+ },
144
+ WEBP_LOW_RES: {
145
+ url: 'category_4@2x.jpg',
146
+ },
147
+ WEBP_HI_2X_RES: {
148
+ url: 'category_4@2x.jpg',
149
+ },
150
+ },
151
+ borderInfo: {},
152
+ },
153
+ },
154
+ },
155
+ },
156
+ {
157
+
158
+ settings: {
159
+ image_text: {
160
+ type: 'INPUTBOX',
161
+ text: '$label.showcase_1.slide_text_5.text',
162
+ },
163
+ image_content: {
164
+ type: 'IMAGE',
165
+ imageData: {
166
+ set: {
167
+ LOW_RES: {
168
+ url: 'category_5.jpg',
169
+ },
170
+ MOBILE_WEBP_LOW_RES: {
171
+ url: 'category_5.jpg',
172
+ },
173
+ MOBILE_WEBP_HI_RES: {
174
+ url: 'category_5@2x.jpg',
175
+ },
176
+ WEBP_LOW_RES: {
177
+ url: 'category_5@2x.jpg',
178
+ },
179
+ WEBP_HI_2X_RES: {
180
+ url: 'category_5@2x.jpg',
181
+ },
182
+ },
183
+ borderInfo: {},
184
+ },
185
+ },
186
+ },
187
+ },
188
+ {
189
+ settings: {
190
+ image_text: {
191
+ type: 'INPUTBOX',
192
+ text: '$label.showcase_1.slide_text_6.text',
193
+ },
194
+ image_content: {
195
+ type: 'IMAGE',
196
+ imageData: {
197
+ set: {
198
+ LOW_RES: {
199
+ url: 'category_6.png',
200
+ },
201
+ MOBILE_WEBP_LOW_RES: {
202
+ url: 'category_6.jpg',
203
+ },
204
+ MOBILE_WEBP_HI_RES: {
205
+ url: 'category_6@2x.jpg',
206
+ },
207
+ WEBP_LOW_RES: {
208
+ url: 'category_6@2x.jpg',
209
+ },
210
+ WEBP_HI_2X_RES: {
211
+ url: 'category_6@2x.jpg',
212
+ },
213
+ },
214
+ borderInfo: {},
215
+ },
216
+ },
217
+ },
218
+ },
219
+ ],
220
+ },
221
+ },
222
+ design: {
223
+ section_title: {
224
+ type: 'TEXT',
225
+ font: 'noto_serif',
226
+ size: 48,
227
+ bold: true,
228
+ italic: false,
229
+ color: '#000000',
230
+ },
231
+ section_description: {
232
+ type: 'TEXT',
233
+ font: 'inter',
234
+ size: 16,
235
+ bold: true,
236
+ italic: false,
237
+ color: '#000000',
238
+ },
239
+ section_tagline: {
240
+ type: 'TEXT',
241
+ font: 'noto_serif',
242
+ size: 16,
243
+ bold: false,
244
+ italic: false,
245
+ color: '#C8D9FF',
246
+ },
247
+ section_button: {
248
+ type: 'BUTTON',
249
+ font: 'inter',
250
+ appearance: 'SOLID',
251
+ size: 'LARGE',
252
+ style: 'pill',
253
+ color: '#000000',
254
+ },
255
+ background: {
256
+ type: 'BACKGROUND',
257
+ style: 'COLOR',
258
+ color: '#F4EFE3',
259
+ },
260
+ image_text: {
261
+ type: 'TEXT',
262
+ font: 'noto_serif',
263
+ size: 24,
264
+ bold: true,
265
+ italic: false,
266
+ color: '#FFFFFF',
267
+ },
268
+ image_content: {
269
+ type: 'IMAGE',
270
+ overlay: 'GRADIENT',
271
+ color: ['#000000', '#000000'],
272
+ },
273
+ },
274
+ } as const;
@@ -0,0 +1,270 @@
1
+ export default {
2
+ showcaseId: '2',
3
+ layoutId: 'Wide_Title_And_Images_Without_Border_Radius',
4
+ previewImage: {
5
+ set: {
6
+ ORIGINAL: {
7
+ url: 'custom_section_showcase_2_preview.png',
8
+ },
9
+ },
10
+ },
11
+ blockName: '$label.showcase_2.blockName',
12
+ content: {
13
+ section_title: {
14
+ type: 'TEXTAREA',
15
+ text: '$label.showcase_2.section_title.text',
16
+ },
17
+ section_tagline: {
18
+ type: 'INPUTBOX',
19
+ text: '$label.showcase_2.section_tagline.text',
20
+ },
21
+ section_button: {
22
+ type: 'BUTTON',
23
+ title: '$label.showcase_2.section_button.title',
24
+ },
25
+ slider: {
26
+ type: 'DECK',
27
+ cards: [
28
+ {
29
+ settings: {
30
+ image_text: {
31
+ type: 'INPUTBOX',
32
+ text: '$label.showcase_2.slide_text_1.text',
33
+ },
34
+ image_content: {
35
+ type: 'IMAGE',
36
+ imageData: {
37
+ set: {
38
+ LOW_RES: {
39
+ url: 'bike_1.jpg',
40
+ },
41
+ MOBILE_WEBP_LOW_RES: {
42
+ url: 'bike_1.jpg',
43
+ },
44
+ MOBILE_WEBP_HI_RES: {
45
+ url: 'bike_1@2x.jpg',
46
+ },
47
+ WEBP_LOW_RES: {
48
+ url: 'bike_1@2x.jpg',
49
+ },
50
+ WEBP_HI_2X_RES: {
51
+ url: 'bike_1@2x.jpg',
52
+ },
53
+ },
54
+ borderInfo: {},
55
+ },
56
+ },
57
+ },
58
+ },
59
+ {
60
+ settings: {
61
+ image_text: {
62
+ type: 'INPUTBOX',
63
+ text: '$label.showcase_2.slide_text_2.text',
64
+ },
65
+ image_content: {
66
+ type: 'IMAGE',
67
+ imageData: {
68
+ set: {
69
+ LOW_RES: {
70
+ url: 'bike_2.jpg',
71
+ },
72
+ MOBILE_WEBP_LOW_RES: {
73
+ url: 'bike_2.jpg',
74
+ },
75
+ MOBILE_WEBP_HI_RES: {
76
+ url: 'bike_2@2x.jpg',
77
+ },
78
+ WEBP_LOW_RES: {
79
+ url: 'bike_2@2x.jpg',
80
+ },
81
+ WEBP_HI_2X_RES: {
82
+ url: 'bike_2@2x.jpg',
83
+ },
84
+ },
85
+ borderInfo: {},
86
+ },
87
+ },
88
+ },
89
+ },
90
+ {
91
+ settings: {
92
+ image_text: {
93
+ type: 'INPUTBOX',
94
+ text: '$label.showcase_2.slide_text_3.text',
95
+ },
96
+ image_content: {
97
+ type: 'IMAGE',
98
+ imageData: {
99
+ set: {
100
+ LOW_RES: {
101
+ url: 'bike_3.jpg',
102
+ },
103
+ MOBILE_WEBP_LOW_RES: {
104
+ url: 'bike_3.jpg',
105
+ },
106
+ MOBILE_WEBP_HI_RES: {
107
+ url: 'bike_3@2x.jpg',
108
+ },
109
+ WEBP_LOW_RES: {
110
+ url: 'bike_3@2x.jpg',
111
+ },
112
+ WEBP_HI_2X_RES: {
113
+ url: 'bike_3@2x.jpg',
114
+ },
115
+ },
116
+ borderInfo: {},
117
+ },
118
+ },
119
+ },
120
+ },
121
+ {
122
+ settings: {
123
+ image_text: {
124
+ type: 'INPUTBOX',
125
+ text: '$label.showcase_2.slide_text_4.text',
126
+ },
127
+ image_content: {
128
+ type: 'IMAGE',
129
+ imageData: {
130
+ set: {
131
+ LOW_RES: {
132
+ url: 'bike_4.jpg',
133
+ },
134
+ MOBILE_WEBP_LOW_RES: {
135
+ url: 'bike_4.jpg',
136
+ },
137
+ MOBILE_WEBP_HI_RES: {
138
+ url: 'bike_4@2x.jpg',
139
+ },
140
+ WEBP_LOW_RES: {
141
+ url: 'bike_4@2x.jpg',
142
+ },
143
+ WEBP_HI_2X_RES: {
144
+ url: 'bike_4@2x.jpg',
145
+ },
146
+ },
147
+ borderInfo: {},
148
+ },
149
+ },
150
+ },
151
+ },
152
+ {
153
+
154
+ settings: {
155
+ image_text: {
156
+ type: 'INPUTBOX',
157
+ text: '$label.showcase_2.slide_text_5.text',
158
+ },
159
+ image_content: {
160
+ type: 'IMAGE',
161
+ imageData: {
162
+ set: {
163
+ LOW_RES: {
164
+ url: 'bike_5.jpg',
165
+ },
166
+ MOBILE_WEBP_LOW_RES: {
167
+ url: 'bike_5.jpg',
168
+ },
169
+ MOBILE_WEBP_HI_RES: {
170
+ url: 'bike_5@2x.jpg',
171
+ },
172
+ WEBP_LOW_RES: {
173
+ url: 'bike_5@2x.jpg',
174
+ },
175
+ WEBP_HI_2X_RES: {
176
+ url: 'bike_5@2x.jpg',
177
+ },
178
+ },
179
+ borderInfo: {},
180
+ },
181
+ },
182
+ },
183
+ },
184
+ {
185
+ settings: {
186
+ image_text: {
187
+ type: 'INPUTBOX',
188
+ text: '$label.showcase_2.slide_text_6.text',
189
+ },
190
+ image_content: {
191
+ type: 'IMAGE',
192
+ imageData: {
193
+ set: {
194
+ LOW_RES: {
195
+ url: 'bike_6.jpg',
196
+ },
197
+ MOBILE_WEBP_LOW_RES: {
198
+ url: 'bike_6.jpg',
199
+ },
200
+ MOBILE_WEBP_HI_RES: {
201
+ url: 'bike_6@2x.jpg',
202
+ },
203
+ WEBP_LOW_RES: {
204
+ url: 'bike_6@2x.jpg',
205
+ },
206
+ WEBP_HI_2X_RES: {
207
+ url: 'bike_6@2x.jpg',
208
+ },
209
+ },
210
+ borderInfo: {},
211
+ },
212
+ },
213
+ },
214
+ },
215
+ ],
216
+ },
217
+ },
218
+ design: {
219
+ section_title: {
220
+ type: 'TEXT',
221
+ font: 'pt_mono',
222
+ size: 48,
223
+ bold: true,
224
+ italic: false,
225
+ color: '#FFFFFF',
226
+ },
227
+ section_description: {
228
+ type: 'TEXT',
229
+ font: 'inter',
230
+ size: 16,
231
+ bold: true,
232
+ italic: false,
233
+ color: '#FFFFFF',
234
+ },
235
+ section_tagline: {
236
+ type: 'TEXT',
237
+ font: 'pt_mono',
238
+ size: 16,
239
+ bold: false,
240
+ italic: false,
241
+ color: '#FFB92E',
242
+ },
243
+ section_button: {
244
+ type: 'BUTTON',
245
+ font: 'inter',
246
+ appearance: 'SOLID',
247
+ size: 'LARGE',
248
+ style: 'rectangle',
249
+ color: '#FFFFFF',
250
+ },
251
+ background: {
252
+ type: 'BACKGROUND',
253
+ style: 'COLOR',
254
+ color: '#000000',
255
+ },
256
+ image_text: {
257
+ type: 'TEXT',
258
+ font: 'pt_mono',
259
+ size: 24,
260
+ bold: true,
261
+ italic: false,
262
+ color: '#FFFFFF',
263
+ },
264
+ image_content: {
265
+ type: 'IMAGE',
266
+ overlay: 'GRADIENT',
267
+ color: ['#000000', '#000000'],
268
+ },
269
+ },
270
+ } as const;
@@ -0,0 +1,88 @@
1
+ export default {
2
+ en: {
3
+ '$label.showcase_1.blockName': 'Reference Section — Slider',
4
+
5
+ '$label.showcase_1.section_title.text': 'Discover the new items\nin our collection',
6
+ '$label.showcase_1.section_description.text': 'Find something for every occasion',
7
+ '$label.showcase_1.section_tagline.text': 'New collection',
8
+ '$label.showcase_1.section_button.title': 'Shop now',
9
+
10
+ '$label.showcase_1.slide_text_1.text': 'Cosmetics',
11
+ '$label.showcase_1.slide_text_2.text': 'Hats & Caps',
12
+ '$label.showcase_1.slide_text_3.text': 'Bags',
13
+ '$label.showcase_1.slide_text_4.text': 'Glasses',
14
+ '$label.showcase_1.slide_text_5.text': 'Dresses',
15
+ '$label.showcase_1.slide_text_6.text': 'Classic shoes',
16
+
17
+ '$label.showcase_2.blockName': 'Reference Section — Slider',
18
+
19
+ '$label.showcase_2.section_title.text': 'Get inspired by our clients bikes.',
20
+ '$label.showcase_2.section_tagline.text': 'Over 9000 bikes has been sold',
21
+ '$label.showcase_2.section_button.title': 'Explore our Instagram',
22
+
23
+ '$label.showcase_2.slide_text_1.text': 'Bike name 1',
24
+ '$label.showcase_2.slide_text_2.text': 'Bike name 2',
25
+ '$label.showcase_2.slide_text_3.text': 'Bike name 3',
26
+ '$label.showcase_2.slide_text_4.text': 'Bike name 4',
27
+ '$label.showcase_2.slide_text_5.text': 'Bike name 5',
28
+ '$label.showcase_2.slide_text_6.text': 'Bike name 6',
29
+ },
30
+
31
+ nl: {
32
+ '$label.showcase_1.blockName': 'Referentie Sectie — Slider',
33
+
34
+ '$label.showcase_1.section_title.text': 'Ontdek de nieuwe items\nin onze collectie',
35
+ '$label.showcase_1.section_description.text': 'Vind iets voor elke gelegenheid',
36
+ '$label.showcase_1.section_tagline.text': 'Nieuwe collectie',
37
+ '$label.showcase_1.section_button.title': 'Shop nu',
38
+
39
+ '$label.showcase_1.slide_text_1.text': 'Cosmetica',
40
+ '$label.showcase_1.slide_text_2.text': 'Hoeden & Petten',
41
+ '$label.showcase_1.slide_text_3.text': 'Tassen',
42
+ '$label.showcase_1.slide_text_4.text': 'Brillen',
43
+ '$label.showcase_1.slide_text_5.text': 'Jurken',
44
+ '$label.showcase_1.slide_text_6.text': 'Klassieke schoenen',
45
+
46
+ '$label.showcase_2.blockName': 'Referentie Sectie — Slider',
47
+
48
+ '$label.showcase_2.section_title.text': 'Laat je inspireren door de fietsen van onze klanten.',
49
+ '$label.showcase_2.section_tagline.text': 'Meer dan 900 fietsen zijn verkocht',
50
+ '$label.showcase_2.section_button.title': 'Ontdek onze Instagram',
51
+
52
+ '$label.showcase_2.slide_text_1.text': 'Fiets naam 1',
53
+ '$label.showcase_2.slide_text_2.text': 'Fiets naam 2',
54
+ '$label.showcase_2.slide_text_3.text': 'Fiets naam 3',
55
+ '$label.showcase_2.slide_text_4.text': 'Fiets naam 4',
56
+ '$label.showcase_2.slide_text_5.text': 'Fiets naam 5',
57
+ '$label.showcase_2.slide_text_6.text': 'Fiets naam 6',
58
+ },
59
+
60
+ fr: {
61
+ '$label.showcase_1.blockName': 'Section de Référence — Slider',
62
+
63
+ '$label.showcase_1.section_title.text': 'Découvrez les nouveaux articles\nde notre collection',
64
+ '$label.showcase_1.section_description.text': 'Trouvez quelque chose pour chaque occasion',
65
+ '$label.showcase_1.section_tagline.text': 'Nouvelle collection',
66
+ '$label.showcase_1.section_button.title': 'Achetez maintenant',
67
+
68
+ '$label.showcase_1.slide_text_1.text': 'Cosmétiques',
69
+ '$label.showcase_1.slide_text_2.text': 'Chapeaux & Casquettes',
70
+ '$label.showcase_1.slide_text_3.text': 'Sacs',
71
+ '$label.showcase_1.slide_text_4.text': 'Lunettes',
72
+ '$label.showcase_1.slide_text_5.text': 'Robes',
73
+ '$label.showcase_1.slide_text_6.text': 'Chaussures classiques',
74
+
75
+ '$label.showcase_2.blockName': 'Section de Référence — Slider',
76
+
77
+ '$label.showcase_2.section_title.text': 'Inspirez-vous des vélos de nos clients.',
78
+ '$label.showcase_2.section_tagline.text': 'Plus de 9000 vélos ont été vendus',
79
+ '$label.showcase_2.section_button.title': 'Explorez notre Instagram',
80
+
81
+ '$label.showcase_2.slide_text_1.text': 'Nom du vélo 1',
82
+ '$label.showcase_2.slide_text_2.text': 'Nom du vélo 2',
83
+ '$label.showcase_2.slide_text_3.text': 'Nom du vélo 3',
84
+ '$label.showcase_2.slide_text_4.text': 'Nom du vélo 4',
85
+ '$label.showcase_2.slide_text_5.text': 'Nom du vélo 5',
86
+ '$label.showcase_2.slide_text_6.text': 'Nom du vélo 6',
87
+ },
88
+ } as const;
@@ -0,0 +1,5 @@
1
+ import ContentSettings from './settings/content.ts';
2
+ import DesignSettings from './settings/design.ts';
3
+
4
+ export type Content = InferContentType<typeof ContentSettings>;
5
+ export type Design = InferDesignType<typeof DesignSettings>;