@jjlmoya/utils-cooking 1.24.0 → 1.25.0

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 (249) hide show
  1. package/package.json +1 -1
  2. package/src/entries.ts +3 -1
  3. package/src/index.ts +1 -0
  4. package/src/pages/[locale]/[slug].astro +56 -19
  5. package/src/tests/i18n-titles.test.ts +5 -17
  6. package/src/tests/locale_completeness.test.ts +2 -13
  7. package/src/tests/shared-test-helpers.ts +56 -0
  8. package/src/tests/tool_exports.test.ts +34 -0
  9. package/src/tests/tool_validation.test.ts +2 -2
  10. package/src/tool/american-kitchen-converter/bibliography.astro +3 -3
  11. package/src/tool/american-kitchen-converter/bibliography.ts +10 -0
  12. package/src/tool/american-kitchen-converter/i18n/de.ts +2 -11
  13. package/src/tool/american-kitchen-converter/i18n/en.ts +2 -11
  14. package/src/tool/american-kitchen-converter/i18n/es.ts +40 -49
  15. package/src/tool/american-kitchen-converter/i18n/fr.ts +2 -21
  16. package/src/tool/american-kitchen-converter/i18n/id.ts +2 -11
  17. package/src/tool/american-kitchen-converter/i18n/it.ts +2 -11
  18. package/src/tool/american-kitchen-converter/i18n/ja.ts +2 -11
  19. package/src/tool/american-kitchen-converter/i18n/ko.ts +2 -11
  20. package/src/tool/american-kitchen-converter/i18n/nl.ts +2 -11
  21. package/src/tool/american-kitchen-converter/i18n/pl.ts +2 -11
  22. package/src/tool/american-kitchen-converter/i18n/pt.ts +2 -11
  23. package/src/tool/american-kitchen-converter/i18n/ru.ts +2 -11
  24. package/src/tool/american-kitchen-converter/i18n/sv.ts +2 -11
  25. package/src/tool/american-kitchen-converter/i18n/tr.ts +2 -11
  26. package/src/tool/american-kitchen-converter/i18n/zh.ts +2 -11
  27. package/src/tool/american-kitchen-converter/seo.astro +11 -4
  28. package/src/tool/banana-ripeness/bibliography.astro +3 -3
  29. package/src/tool/banana-ripeness/bibliography.ts +10 -0
  30. package/src/tool/banana-ripeness/i18n/de.ts +2 -15
  31. package/src/tool/banana-ripeness/i18n/en.ts +36 -49
  32. package/src/tool/banana-ripeness/i18n/es.ts +36 -49
  33. package/src/tool/banana-ripeness/i18n/fr.ts +36 -49
  34. package/src/tool/banana-ripeness/i18n/id.ts +2 -15
  35. package/src/tool/banana-ripeness/i18n/it.ts +2 -15
  36. package/src/tool/banana-ripeness/i18n/ja.ts +2 -15
  37. package/src/tool/banana-ripeness/i18n/ko.ts +2 -15
  38. package/src/tool/banana-ripeness/i18n/nl.ts +2 -15
  39. package/src/tool/banana-ripeness/i18n/pl.ts +2 -15
  40. package/src/tool/banana-ripeness/i18n/pt.ts +2 -15
  41. package/src/tool/banana-ripeness/i18n/ru.ts +2 -15
  42. package/src/tool/banana-ripeness/i18n/sv.ts +2 -15
  43. package/src/tool/banana-ripeness/i18n/tr.ts +2 -15
  44. package/src/tool/banana-ripeness/i18n/zh.ts +2 -15
  45. package/src/tool/banana-ripeness/seo.astro +10 -3
  46. package/src/tool/brine/bibliography.astro +3 -3
  47. package/src/tool/brine/bibliography.ts +6 -0
  48. package/src/tool/brine/i18n/de.ts +4 -19
  49. package/src/tool/brine/i18n/en.ts +3 -17
  50. package/src/tool/brine/i18n/es.ts +4 -19
  51. package/src/tool/brine/i18n/fr.ts +3 -17
  52. package/src/tool/brine/i18n/id.ts +4 -19
  53. package/src/tool/brine/i18n/it.ts +4 -19
  54. package/src/tool/brine/i18n/ja.ts +4 -19
  55. package/src/tool/brine/i18n/ko.ts +4 -19
  56. package/src/tool/brine/i18n/nl.ts +4 -19
  57. package/src/tool/brine/i18n/pl.ts +4 -19
  58. package/src/tool/brine/i18n/pt.ts +4 -19
  59. package/src/tool/brine/i18n/ru.ts +4 -19
  60. package/src/tool/brine/i18n/sv.ts +4 -19
  61. package/src/tool/brine/i18n/tr.ts +4 -19
  62. package/src/tool/brine/i18n/zh.ts +4 -19
  63. package/src/tool/brine/seo.astro +11 -4
  64. package/src/tool/cookware-guide/bibliography.astro +2 -2
  65. package/src/tool/cookware-guide/bibliography.ts +10 -0
  66. package/src/tool/cookware-guide/i18n/de.ts +3 -17
  67. package/src/tool/cookware-guide/i18n/en.ts +3 -17
  68. package/src/tool/cookware-guide/i18n/es.ts +3 -17
  69. package/src/tool/cookware-guide/i18n/fr.ts +3 -17
  70. package/src/tool/cookware-guide/i18n/id.ts +3 -17
  71. package/src/tool/cookware-guide/i18n/it.ts +3 -17
  72. package/src/tool/cookware-guide/i18n/ja.ts +3 -17
  73. package/src/tool/cookware-guide/i18n/ko.ts +3 -17
  74. package/src/tool/cookware-guide/i18n/nl.ts +3 -17
  75. package/src/tool/cookware-guide/i18n/pl.ts +3 -17
  76. package/src/tool/cookware-guide/i18n/pt.ts +3 -17
  77. package/src/tool/cookware-guide/i18n/ru.ts +3 -17
  78. package/src/tool/cookware-guide/i18n/sv.ts +3 -17
  79. package/src/tool/cookware-guide/i18n/tr.ts +3 -17
  80. package/src/tool/cookware-guide/i18n/zh.ts +3 -17
  81. package/src/tool/cookware-guide/seo.astro +11 -4
  82. package/src/tool/egg-timer/bibliography.astro +3 -11
  83. package/src/tool/egg-timer/bibliography.ts +10 -0
  84. package/src/tool/egg-timer/i18n/de.ts +3 -17
  85. package/src/tool/egg-timer/i18n/en.ts +2 -15
  86. package/src/tool/egg-timer/i18n/es.ts +127 -141
  87. package/src/tool/egg-timer/i18n/fr.ts +2 -15
  88. package/src/tool/egg-timer/i18n/id.ts +4 -18
  89. package/src/tool/egg-timer/i18n/it.ts +3 -17
  90. package/src/tool/egg-timer/i18n/ja.ts +3 -17
  91. package/src/tool/egg-timer/i18n/ko.ts +3 -17
  92. package/src/tool/egg-timer/i18n/nl.ts +3 -17
  93. package/src/tool/egg-timer/i18n/pl.ts +3 -17
  94. package/src/tool/egg-timer/i18n/pt.ts +3 -17
  95. package/src/tool/egg-timer/i18n/ru.ts +3 -17
  96. package/src/tool/egg-timer/i18n/sv.ts +3 -17
  97. package/src/tool/egg-timer/i18n/tr.ts +3 -17
  98. package/src/tool/egg-timer/i18n/zh.ts +3 -17
  99. package/src/tool/egg-timer/seo.astro +6 -30
  100. package/src/tool/ingredient-rescaler/bibliography.astro +3 -3
  101. package/src/tool/ingredient-rescaler/bibliography.ts +6 -0
  102. package/src/tool/ingredient-rescaler/i18n/de.ts +3 -17
  103. package/src/tool/ingredient-rescaler/i18n/en.ts +3 -18
  104. package/src/tool/ingredient-rescaler/i18n/es.ts +4 -19
  105. package/src/tool/ingredient-rescaler/i18n/fr.ts +2 -15
  106. package/src/tool/ingredient-rescaler/i18n/id.ts +3 -17
  107. package/src/tool/ingredient-rescaler/i18n/it.ts +3 -17
  108. package/src/tool/ingredient-rescaler/i18n/ja.ts +3 -17
  109. package/src/tool/ingredient-rescaler/i18n/ko.ts +3 -17
  110. package/src/tool/ingredient-rescaler/i18n/nl.ts +3 -17
  111. package/src/tool/ingredient-rescaler/i18n/pl.ts +3 -17
  112. package/src/tool/ingredient-rescaler/i18n/pt.ts +3 -17
  113. package/src/tool/ingredient-rescaler/i18n/ru.ts +3 -17
  114. package/src/tool/ingredient-rescaler/i18n/sv.ts +3 -17
  115. package/src/tool/ingredient-rescaler/i18n/tr.ts +3 -17
  116. package/src/tool/ingredient-rescaler/i18n/zh.ts +3 -17
  117. package/src/tool/ingredient-rescaler/seo.astro +11 -4
  118. package/src/tool/kitchen-timer/bibliography.astro +3 -3
  119. package/src/tool/kitchen-timer/bibliography.ts +10 -0
  120. package/src/tool/kitchen-timer/i18n/de.ts +3 -13
  121. package/src/tool/kitchen-timer/i18n/en.ts +6 -22
  122. package/src/tool/kitchen-timer/i18n/es.ts +6 -22
  123. package/src/tool/kitchen-timer/i18n/fr.ts +6 -22
  124. package/src/tool/kitchen-timer/i18n/id.ts +3 -13
  125. package/src/tool/kitchen-timer/i18n/it.ts +3 -13
  126. package/src/tool/kitchen-timer/i18n/ja.ts +3 -13
  127. package/src/tool/kitchen-timer/i18n/ko.ts +3 -13
  128. package/src/tool/kitchen-timer/i18n/nl.ts +3 -13
  129. package/src/tool/kitchen-timer/i18n/pl.ts +3 -13
  130. package/src/tool/kitchen-timer/i18n/pt.ts +3 -13
  131. package/src/tool/kitchen-timer/i18n/ru.ts +3 -13
  132. package/src/tool/kitchen-timer/i18n/sv.ts +3 -13
  133. package/src/tool/kitchen-timer/i18n/tr.ts +3 -13
  134. package/src/tool/kitchen-timer/i18n/zh.ts +3 -13
  135. package/src/tool/kitchen-timer/seo.astro +10 -3
  136. package/src/tool/meringue-peak/bibliography.astro +3 -3
  137. package/src/tool/meringue-peak/bibliography.ts +14 -0
  138. package/src/tool/meringue-peak/i18n/de.ts +3 -13
  139. package/src/tool/meringue-peak/i18n/en.ts +2 -15
  140. package/src/tool/meringue-peak/i18n/es.ts +135 -149
  141. package/src/tool/meringue-peak/i18n/fr.ts +2 -15
  142. package/src/tool/meringue-peak/i18n/id.ts +3 -13
  143. package/src/tool/meringue-peak/i18n/it.ts +3 -13
  144. package/src/tool/meringue-peak/i18n/ja.ts +3 -13
  145. package/src/tool/meringue-peak/i18n/ko.ts +3 -13
  146. package/src/tool/meringue-peak/i18n/nl.ts +3 -13
  147. package/src/tool/meringue-peak/i18n/pl.ts +3 -13
  148. package/src/tool/meringue-peak/i18n/pt.ts +3 -13
  149. package/src/tool/meringue-peak/i18n/ru.ts +3 -13
  150. package/src/tool/meringue-peak/i18n/sv.ts +3 -13
  151. package/src/tool/meringue-peak/i18n/tr.ts +3 -13
  152. package/src/tool/meringue-peak/i18n/zh.ts +3 -13
  153. package/src/tool/meringue-peak/seo.astro +10 -3
  154. package/src/tool/mold-scaler/bibliography.astro +3 -3
  155. package/src/tool/mold-scaler/bibliography.ts +10 -0
  156. package/src/tool/mold-scaler/i18n/de.ts +5 -17
  157. package/src/tool/mold-scaler/i18n/en.ts +5 -20
  158. package/src/tool/mold-scaler/i18n/es.ts +5 -20
  159. package/src/tool/mold-scaler/i18n/fr.ts +5 -20
  160. package/src/tool/mold-scaler/i18n/id.ts +5 -17
  161. package/src/tool/mold-scaler/i18n/it.ts +5 -17
  162. package/src/tool/mold-scaler/i18n/ja.ts +5 -17
  163. package/src/tool/mold-scaler/i18n/ko.ts +5 -17
  164. package/src/tool/mold-scaler/i18n/nl.ts +5 -17
  165. package/src/tool/mold-scaler/i18n/pl.ts +5 -17
  166. package/src/tool/mold-scaler/i18n/pt.ts +5 -17
  167. package/src/tool/mold-scaler/i18n/ru.ts +5 -17
  168. package/src/tool/mold-scaler/i18n/sv.ts +5 -17
  169. package/src/tool/mold-scaler/i18n/tr.ts +5 -17
  170. package/src/tool/mold-scaler/i18n/zh.ts +5 -17
  171. package/src/tool/mold-scaler/seo.astro +10 -3
  172. package/src/tool/pizza/bibliography.astro +3 -3
  173. package/src/tool/pizza/bibliography.ts +18 -0
  174. package/src/tool/pizza/i18n/de.ts +3 -13
  175. package/src/tool/pizza/i18n/en.ts +58 -75
  176. package/src/tool/pizza/i18n/es.ts +2 -20
  177. package/src/tool/pizza/i18n/fr.ts +58 -75
  178. package/src/tool/pizza/i18n/id.ts +3 -9
  179. package/src/tool/pizza/i18n/it.ts +3 -13
  180. package/src/tool/pizza/i18n/ja.ts +3 -9
  181. package/src/tool/pizza/i18n/ko.ts +3 -9
  182. package/src/tool/pizza/i18n/nl.ts +3 -9
  183. package/src/tool/pizza/i18n/pl.ts +3 -9
  184. package/src/tool/pizza/i18n/pt.ts +3 -9
  185. package/src/tool/pizza/i18n/ru.ts +28 -34
  186. package/src/tool/pizza/i18n/sv.ts +3 -9
  187. package/src/tool/pizza/i18n/tr.ts +3 -9
  188. package/src/tool/pizza/i18n/zh.ts +3 -9
  189. package/src/tool/pizza/seo.astro +11 -4
  190. package/src/tool/roux-guide/bibliography.astro +3 -3
  191. package/src/tool/roux-guide/bibliography.ts +14 -0
  192. package/src/tool/roux-guide/i18n/de.ts +3 -9
  193. package/src/tool/roux-guide/i18n/en.ts +2 -15
  194. package/src/tool/roux-guide/i18n/es.ts +3 -17
  195. package/src/tool/roux-guide/i18n/fr.ts +2 -15
  196. package/src/tool/roux-guide/i18n/id.ts +3 -9
  197. package/src/tool/roux-guide/i18n/it.ts +3 -9
  198. package/src/tool/roux-guide/i18n/ja.ts +3 -9
  199. package/src/tool/roux-guide/i18n/ko.ts +3 -9
  200. package/src/tool/roux-guide/i18n/nl.ts +3 -9
  201. package/src/tool/roux-guide/i18n/pl.ts +3 -9
  202. package/src/tool/roux-guide/i18n/pt.ts +3 -9
  203. package/src/tool/roux-guide/i18n/ru.ts +3 -9
  204. package/src/tool/roux-guide/i18n/sv.ts +3 -9
  205. package/src/tool/roux-guide/i18n/tr.ts +3 -9
  206. package/src/tool/roux-guide/i18n/zh.ts +3 -9
  207. package/src/tool/roux-guide/seo.astro +11 -4
  208. package/src/tool/sourdough-calculator/bibliography.astro +3 -3
  209. package/src/tool/sourdough-calculator/bibliography.ts +14 -0
  210. package/src/tool/sourdough-calculator/i18n/de.ts +3 -9
  211. package/src/tool/sourdough-calculator/i18n/en.ts +3 -17
  212. package/src/tool/sourdough-calculator/i18n/es.ts +4 -18
  213. package/src/tool/sourdough-calculator/i18n/fr.ts +2 -15
  214. package/src/tool/sourdough-calculator/i18n/id.ts +3 -9
  215. package/src/tool/sourdough-calculator/i18n/it.ts +3 -9
  216. package/src/tool/sourdough-calculator/i18n/ja.ts +3 -9
  217. package/src/tool/sourdough-calculator/i18n/ko.ts +3 -9
  218. package/src/tool/sourdough-calculator/i18n/nl.ts +3 -9
  219. package/src/tool/sourdough-calculator/i18n/pl.ts +3 -9
  220. package/src/tool/sourdough-calculator/i18n/pt.ts +3 -9
  221. package/src/tool/sourdough-calculator/i18n/ru.ts +3 -9
  222. package/src/tool/sourdough-calculator/i18n/sv.ts +3 -9
  223. package/src/tool/sourdough-calculator/i18n/tr.ts +3 -9
  224. package/src/tool/sourdough-calculator/i18n/zh.ts +3 -9
  225. package/src/tool/sourdough-calculator/seo.astro +11 -4
  226. package/src/tool/yeast-converter/bibliography.astro +6 -0
  227. package/src/tool/yeast-converter/bibliography.ts +6 -0
  228. package/src/tool/yeast-converter/component.astro +96 -0
  229. package/src/tool/yeast-converter/entry.ts +26 -0
  230. package/src/tool/yeast-converter/i18n/de.ts +235 -0
  231. package/src/tool/yeast-converter/i18n/en.ts +234 -0
  232. package/src/tool/yeast-converter/i18n/es.ts +235 -0
  233. package/src/tool/yeast-converter/i18n/fr.ts +235 -0
  234. package/src/tool/yeast-converter/i18n/id.ts +235 -0
  235. package/src/tool/yeast-converter/i18n/it.ts +235 -0
  236. package/src/tool/yeast-converter/i18n/ja.ts +235 -0
  237. package/src/tool/yeast-converter/i18n/ko.ts +235 -0
  238. package/src/tool/yeast-converter/i18n/nl.ts +235 -0
  239. package/src/tool/yeast-converter/i18n/pl.ts +235 -0
  240. package/src/tool/yeast-converter/i18n/pt.ts +235 -0
  241. package/src/tool/yeast-converter/i18n/ru.ts +235 -0
  242. package/src/tool/yeast-converter/i18n/sv.ts +235 -0
  243. package/src/tool/yeast-converter/i18n/tr.ts +235 -0
  244. package/src/tool/yeast-converter/i18n/zh.ts +235 -0
  245. package/src/tool/yeast-converter/index.ts +11 -0
  246. package/src/tool/yeast-converter/init.ts +277 -0
  247. package/src/tool/yeast-converter/seo.astro +15 -0
  248. package/src/tool/yeast-converter/yeast-converter-fresh-dry-sourdough-starter.css +388 -0
  249. package/src/tools.ts +2 -0
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = '식재료 계량 계산기 레시피 분량 조절';
4
5
  const description = '인분 수에 따라 레시피 분량을 자동으로 조절합니다. 복잡한 계산 없이 레시피를 곱하거나 나누어 정확한 재료 양을 확인하세요.';
@@ -96,23 +97,7 @@ export const content: ToolLocaleContent = {
96
97
  defaultIngredient3: '계란 2개',
97
98
  },
98
99
  faqTitle: '자주 묻는 질문',
99
- faq,
100
- bibliographyTitle: '참고 문헌',
101
- bibliography: [
102
- {
103
- name: 'Harold McGee - On Food and Cooking (음식과 요리)',
104
- url: 'https://en.wikipedia.org/wiki/Harold_McGee',
105
- },
106
- {
107
- name: 'The Flavor Bible by Karen Page and Andrew Dornenburg',
108
- url: 'https://www.flavorprints.com/',
109
- },
110
- {
111
- name: 'Modernist Cuisine - 과학적 계량 기술',
112
- url: 'https://www.modernistcuisine.com/',
113
- },
114
- ],
115
- howTo,
100
+ faq, howTo,
116
101
  seo: [
117
102
  {
118
103
  type: 'title',
@@ -240,5 +225,6 @@ export const content: ToolLocaleContent = {
240
225
  html: '이 도구는 수학적 계산을 단순화하여 당신이 가장 중요한 "창의성과 맛"에 에너지를 집중할 수 있도록 돕습니다.',
241
226
  },
242
227
  ],
228
+ bibliography,
243
229
  schemas: [appSchema, faqSchema, howToSchema],
244
230
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = 'Ingrediënten Reclalculator Recept Aanpassen';
4
5
  const description = 'Schaal recepten automatisch op basis van het aantal porties. Bereken de exacte hoeveelheden ingrediënten door je recept te vermenigvuldigen of te verkleinen.';
@@ -96,23 +97,7 @@ export const content: ToolLocaleContent = {
96
97
  defaultIngredient3: '2 Eieren',
97
98
  },
98
99
  faqTitle: 'Veelgestelde Vragen',
99
- faq,
100
- bibliographyTitle: 'Bibliografie',
101
- bibliography: [
102
- {
103
- name: 'Harold McGee - On Food and Cooking: The Science and Lore of the Kitchen',
104
- url: 'https://en.wikipedia.org/wiki/Harold_McGee',
105
- },
106
- {
107
- name: 'The Flavor Bible by Karen Page and Andrew Dornenburg',
108
- url: 'https://www.flavorprints.com/',
109
- },
110
- {
111
- name: 'Modernist Cuisine - Wetenschappelijke schaaltechnieken',
112
- url: 'https://www.modernistcuisine.com/',
113
- },
114
- ],
115
- howTo,
100
+ faq, howTo,
116
101
  seo: [
117
102
  {
118
103
  type: 'title',
@@ -240,5 +225,6 @@ export const content: ToolLocaleContent = {
240
225
  html: 'Ons tool vereenvoudigt de wiskunde, zodat je je energie kunt richten op wat echt telt: creativiteit en smaak.',
241
226
  },
242
227
  ],
228
+ bibliography,
243
229
  schemas: [appSchema, faqSchema, howToSchema],
244
230
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = 'Kalkulator Skalowania Ingrediencji Dostosowanie Przepisu';
4
5
  const description = 'Automatycznie skaluj przepisy według liczby porcji. Oblicz dokładne ilości składników, mnożąc lub zmniejszając swój przepis bez żadnych komplikacji.';
@@ -96,23 +97,7 @@ export const content: ToolLocaleContent = {
96
97
  defaultIngredient3: '2 Jajka',
97
98
  },
98
99
  faqTitle: 'Często Zadawane Pytania',
99
- faq,
100
- bibliographyTitle: 'Bibliografia',
101
- bibliography: [
102
- {
103
- name: 'Harold McGee - On Food and Cooking: The Science and Lore of the Kitchen',
104
- url: 'https://en.wikipedia.org/wiki/Harold_McGee',
105
- },
106
- {
107
- name: 'The Flavor Bible by Karen Page and Andrew Dornenburg',
108
- url: 'https://www.flavorprints.com/',
109
- },
110
- {
111
- name: 'Modernist Cuisine - Techniki skalowania naukowego',
112
- url: 'https://www.modernistcuisine.com/',
113
- },
114
- ],
115
- howTo,
100
+ faq, howTo,
116
101
  seo: [
117
102
  {
118
103
  type: 'title',
@@ -240,5 +225,6 @@ export const content: ToolLocaleContent = {
240
225
  html: 'Nasze narzędzie upraszcza matematykę, abyś mógł poświęcić energię na to, co naprawdę ważne: kreatywność i smak.',
241
226
  },
242
227
  ],
228
+ bibliography,
243
229
  schemas: [appSchema, faqSchema, howToSchema],
244
230
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = 'Escalador de Ingredientes Ajuste de Receitas';
4
5
  const description = 'Escala receitas automaticamente segundo o número de doses. Calcula as quantidades exatas de ingredientes multiplicando ou reduzindo a tua receita sem complicações.';
@@ -96,23 +97,7 @@ export const content: ToolLocaleContent = {
96
97
  defaultIngredient3: '2 Ovos',
97
98
  },
98
99
  faqTitle: 'Perguntas Frequentes',
99
- faq,
100
- bibliographyTitle: 'Bibliografia',
101
- bibliography: [
102
- {
103
- name: 'Harold McGee - On Food and Cooking: The Science and Lore of the Kitchen',
104
- url: 'https://en.wikipedia.org/wiki/Harold_McGee',
105
- },
106
- {
107
- name: 'The Flavor Bible by Karen Page and Andrew Dornenburg',
108
- url: 'https://www.flavorprints.com/',
109
- },
110
- {
111
- name: 'Modernist Cuisine - Técnicas de escalamento científico',
112
- url: 'https://www.modernistcuisine.com/',
113
- },
114
- ],
115
- howTo,
100
+ faq, howTo,
116
101
  seo: [
117
102
  {
118
103
  type: 'title',
@@ -240,5 +225,6 @@ export const content: ToolLocaleContent = {
240
225
  html: 'A nossa ferramenta simplifica a matemática para que possas dedicar a tua energia ao que realmente importa: criatividade e sabor.',
241
226
  },
242
227
  ],
228
+ bibliography,
243
229
  schemas: [appSchema, faqSchema, howToSchema],
244
230
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = 'Калькулятор масштабирования ингредиентов и рецептов';
4
5
  const description = 'Автоматически изменяйте масштаб рецептов в зависимости от количества порций. Рассчитывайте точное количество ингредиентов без лишних сложностей.';
@@ -96,23 +97,7 @@ export const content: ToolLocaleContent = {
96
97
  defaultIngredient3: '2 Яйца',
97
98
  },
98
99
  faqTitle: 'Часто задаваемые вопросы',
99
- faq,
100
- bibliographyTitle: 'Библиография',
101
- bibliography: [
102
- {
103
- name: 'Harold McGee - On Food and Cooking: The Science and Lore of the Kitchen',
104
- url: 'https://en.wikipedia.org/wiki/Harold_McGee',
105
- },
106
- {
107
- name: 'The Flavor Bible by Karen Page and Andrew Dornenburg',
108
- url: 'https://www.flavorprints.com/',
109
- },
110
- {
111
- name: 'Modernist Cuisine - Техники научного масштабирования',
112
- url: 'https://www.modernistcuisine.com/',
113
- },
114
- ],
115
- howTo,
100
+ faq, howTo,
116
101
  seo: [
117
102
  {
118
103
  type: 'title',
@@ -240,5 +225,6 @@ export const content: ToolLocaleContent = {
240
225
  html: 'Наш инструмент упрощает математику, чтобы вы могли направить энергию на то, что действительно важно: творчество и вкус.',
241
226
  },
242
227
  ],
228
+ bibliography,
243
229
  schemas: [appSchema, faqSchema, howToSchema],
244
230
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = 'Ingrediensomvandlare Receptjustering';
4
5
  const description = 'Skala recept automatiskt efter antal portioner. Beräkna exakta mängder ingredienser genom att multiplicera eller minska ditt recept utan krångel.';
@@ -96,23 +97,7 @@ export const content: ToolLocaleContent = {
96
97
  defaultIngredient3: '2 Ägg',
97
98
  },
98
99
  faqTitle: 'Vanliga Frågor',
99
- faq,
100
- bibliographyTitle: 'Bibliografi',
101
- bibliography: [
102
- {
103
- name: 'Harold McGee - On Food and Cooking: The Science and Lore of the Kitchen',
104
- url: 'https://en.wikipedia.org/wiki/Harold_McGee',
105
- },
106
- {
107
- name: 'The Flavor Bible by Karen Page and Andrew Dornenburg',
108
- url: 'https://www.flavorprints.com/',
109
- },
110
- {
111
- name: 'Modernist Cuisine - Vetenskapliga skalningstekniker',
112
- url: 'https://www.modernistcuisine.com/',
113
- },
114
- ],
115
- howTo,
100
+ faq, howTo,
116
101
  seo: [
117
102
  {
118
103
  type: 'title',
@@ -240,5 +225,6 @@ export const content: ToolLocaleContent = {
240
225
  html: 'Vårt verktyg förenklar matematiken så att du kan ägna din energi åt det som verkligen betyder något: kreativitet och smak.',
241
226
  },
242
227
  ],
228
+ bibliography,
243
229
  schemas: [appSchema, faqSchema, howToSchema],
244
230
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = 'Malzeme Ölçekleyici Tarif Ayarlama';
4
5
  const description = 'Tarifleri porsiyon sayısına göre otomatik olarak ölçeklendirin. Tarifinizi çarparak veya azaltarak malzeme miktarlarını karmaşa olmadan hesaplayın.';
@@ -96,23 +97,7 @@ export const content: ToolLocaleContent = {
96
97
  defaultIngredient3: '2 Yumurta',
97
98
  },
98
99
  faqTitle: 'Sıkça Sorulan Sorular',
99
- faq,
100
- bibliographyTitle: 'Kaynakça',
101
- bibliography: [
102
- {
103
- name: 'Harold McGee - On Food and Cooking: The Science and Lore of the Kitchen',
104
- url: 'https://en.wikipedia.org/wiki/Harold_McGee',
105
- },
106
- {
107
- name: 'The Flavor Bible by Karen Page and Andrew Dornenburg',
108
- url: 'https://www.flavorprints.com/',
109
- },
110
- {
111
- name: 'Modernist Cuisine - Bilimsel ölçeklendirme teknikleri',
112
- url: 'https://www.modernistcuisine.com/',
113
- },
114
- ],
115
- howTo,
100
+ faq, howTo,
116
101
  seo: [
117
102
  {
118
103
  type: 'title',
@@ -240,5 +225,6 @@ export const content: ToolLocaleContent = {
240
225
  html: 'Aracımız matematiği basitleştirir, böylece enerjinizi asıl önemli olan şeye ayırabilirsiniz: yaratıcılık ve lezzet.',
241
226
  },
242
227
  ],
228
+ bibliography,
243
229
  schemas: [appSchema, faqSchema, howToSchema],
244
230
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = '食材缩放器 食谱份量调整';
4
5
  const description = '根据份量自动缩放食谱。通过乘算或减算快速计算精确的食材用量,无需复杂换算。';
@@ -96,23 +97,7 @@ export const content: ToolLocaleContent = {
96
97
  defaultIngredient3: '2 个鸡蛋',
97
98
  },
98
99
  faqTitle: '常见问题',
99
- faq,
100
- bibliographyTitle: '参考资料',
101
- bibliography: [
102
- {
103
- name: 'Harold McGee - On Food and Cooking (食物与烹饪科学)',
104
- url: 'https://en.wikipedia.org/wiki/Harold_McGee',
105
- },
106
- {
107
- name: 'The Flavor Bible by Karen Page and Andrew Dornenburg',
108
- url: 'https://www.flavorprints.com/',
109
- },
110
- {
111
- name: 'Modernist Cuisine - 科学缩放技术',
112
- url: 'https://www.modernistcuisine.com/',
113
- },
114
- ],
115
- howTo,
100
+ faq, howTo,
116
101
  seo: [
117
102
  {
118
103
  type: 'title',
@@ -240,5 +225,6 @@ export const content: ToolLocaleContent = {
240
225
  html: '本工具简化了数学运算,让你能百分之百投入到最重要的事:创意与风味。',
241
226
  },
242
227
  ],
228
+ bibliography,
243
229
  schemas: [appSchema, faqSchema, howToSchema],
244
230
  };
@@ -1,8 +1,15 @@
1
1
  ---
2
- import { SEORenderer } from "@jjlmoya/utils-shared";
3
- import { content } from "./i18n/es";
2
+ import { SEORenderer } from '@jjlmoya/utils-shared';
3
+ import { INGREDIENT_RESCALER_TOOL } from './index';
4
+ import type { KnownLocale } from '../../types';
4
5
 
5
- const locale = "es";
6
+ interface Props {
7
+ locale?: KnownLocale;
8
+ }
9
+
10
+ const { locale = 'es' } = Astro.props;
11
+ const content = await INGREDIENT_RESCALER_TOOL.i18n[locale]?.();
12
+ if (!content) return null;
6
13
  ---
7
14
 
8
- <SEORenderer content={{ sections: content.seo, locale }} />
15
+ {content.seo?.length > 0 && <SEORenderer content={{ locale, sections: content.seo }} />}
@@ -1,6 +1,6 @@
1
1
  ---
2
- import { Bibliography } from "@jjlmoya/utils-shared";
3
- import { content } from "./i18n/es";
2
+ import { Bibliography as BibliographyComponent } from '@jjlmoya/utils-shared';
3
+ import { bibliography } from './bibliography';
4
4
  ---
5
5
 
6
- <Bibliography links={content.bibliography} />
6
+ <BibliographyComponent links={bibliography} />
@@ -0,0 +1,10 @@
1
+ export const bibliography = [
2
+ {
3
+ name: 'Food Safety and Inspection',
4
+ url: 'https://www.fsis.usda.gov/',
5
+ },
6
+ {
7
+ name: 'Mise en Place',
8
+ url: 'https://www.escoffier.edu/',
9
+ },
10
+ ];
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Multi Küchen Timer";
4
5
  const description = "Verwalten Sie mehrere Garzeiten gleichzeitig. Unabhängige Alarme, ideal für Köche und die Organisation in der Küche (Mise en Place).";
@@ -76,7 +77,6 @@ export const content: ToolLocaleContent = {
76
77
  title: 'Multi Küchen Timer',
77
78
  description: 'Verwalten Sie mehrere Garzeiten gleichzeitig. Unabhängige Alarme, ideal für Köche und die Organisation in der Küche (Mise en Place).',
78
79
  faqTitle: 'Häufig gestellte Fragen',
79
- bibliographyTitle: 'Referenzen',
80
80
  ui: {
81
81
  addTimer: 'Timer hinzufügen',
82
82
  stopAll: 'Alle stoppen',
@@ -101,18 +101,7 @@ export const content: ToolLocaleContent = {
101
101
  statusFinished: 'ZEIT UM!',
102
102
  finishNotification: 'Timer beendet für',
103
103
  },
104
- faq,
105
- bibliography: [
106
- {
107
- name: 'Lebensmittelsicherheit: USDA Guidelines',
108
- url: 'https://www.fsis.usda.gov/',
109
- },
110
- {
111
- name: 'Mise en Place - Die Profiküche',
112
- url: 'https://www.escoffier.edu/',
113
- },
114
- ],
115
- howTo,
104
+ faq, howTo,
116
105
  seo: [
117
106
  {
118
107
  type: 'title',
@@ -170,5 +159,6 @@ export const content: ToolLocaleContent = {
170
159
  html: '<strong>Profi-Tipp:</strong> Zeitpräzision unterscheidet den Küchenchef vom Hobbykoch. Verlassen Sie sich nicht nur auf Ihr Gefühl, sondern nutzen Sie die Technik für konstante Ergebnisse.',
171
160
  },
172
161
  ],
162
+ bibliography,
173
163
  schemas: [faqSchema as any, howToSchema as any, appSchema as any],
174
164
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Multiple Kitchen Timer";
4
5
  const description = "Manage multiple cooking times simultaneously. Independent alarms, ideal for chefs and kitchen organization (Mise en Place).";
@@ -80,10 +81,7 @@ export const content: ToolLocaleContent = {
80
81
  title: 'Multiple Kitchen Timer',
81
82
  description:
82
83
  'Manage multiple cooking times simultaneously. Independent alarms, ideal for chefs and kitchen organization (Mise en Place).',
83
- faqTitle: 'Frequently Asked Questions',
84
- bibliographyTitle: 'References',
85
-
86
- ui: {
84
+ faqTitle: 'Frequently Asked Questions', ui: {
87
85
  addTimer: 'Add Timer',
88
86
  stopAll: 'Stop All',
89
87
  defaultName: 'Timer',
@@ -129,20 +127,7 @@ export const content: ToolLocaleContent = {
129
127
  answer:
130
128
  'Between 5°C and 65°C bacteria multiply rapidly. Cooked foods shouldn\'t stay in this range more than 2 hours (1 hour if temperature exceeds 30°C). Use a timer to monitor cooling before refrigerating.',
131
129
  },
132
- ],
133
-
134
- bibliography: [
135
- {
136
- name: 'Food Safety: USDA Guidelines',
137
- url: 'https://www.fsis.usda.gov/',
138
- },
139
- {
140
- name: 'Mise en Place - Professional Cooking',
141
- url: 'https://www.escoffier.edu/',
142
- },
143
- ],
144
-
145
- howTo: [
130
+ ], howTo: [
146
131
  {
147
132
  name: 'Create multiple timers',
148
133
  text: 'Use the \'+\' button to add as many timers as you need. Perfect for orchestrating multiple dishes simultaneously.',
@@ -160,8 +145,7 @@ export const content: ToolLocaleContent = {
160
145
  text: 'Authorize notifications so the browser alerts you when time\'s up, even if you switch tabs.',
161
146
  },
162
147
  ],
163
-
164
- seo: [
148
+ seo: [
165
149
  {
166
150
  type: 'title',
167
151
  text: 'Temporal Mastery in the Kitchen',
@@ -223,6 +207,6 @@ export const content: ToolLocaleContent = {
223
207
  html: '<strong>Professional tip:</strong> Time precision is what separates a chef from a home cook. Invest in a good timer and use it always. Experience tells you when something "looks ready", but time guarantees consistency.',
224
208
  },
225
209
  ],
226
-
227
- schemas: [faqSchema as any, howToSchema as any, appSchema as any],
210
+ bibliography,
211
+ schemas: [faqSchema as any, howToSchema as any, appSchema as any],
228
212
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Temporizador de Cocina Múltiple";
4
5
  const description = "Gestiona múltiples tiempos de cocción simultáneamente. Alarmas independientes, ideal para chefs y organización en la cocina (Mise en Place).";
@@ -80,10 +81,7 @@ export const content: ToolLocaleContent = {
80
81
  title: 'Temporizador de Cocina Múltiple',
81
82
  description:
82
83
  'Gestiona múltiples tiempos de cocción simultáneamente. Alarmas independientes, ideal para chefs y organización en la cocina (Mise en Place).',
83
- faqTitle: 'Preguntas Frecuentes',
84
- bibliographyTitle: 'Referencias',
85
-
86
- ui: {
84
+ faqTitle: 'Preguntas Frecuentes', ui: {
87
85
  addTimer: 'Añadir Temporizador',
88
86
  stopAll: 'Detener Todas',
89
87
  defaultName: 'Temporizador',
@@ -129,20 +127,7 @@ export const content: ToolLocaleContent = {
129
127
  answer:
130
128
  'Entre 5°C y 65°C las bacterias se multiplican rápidamente. Los alimentos cocinados no deben estar en esta zona más de 2 horas (1 hora si hace >30°C). Usa un temporizador para controlar el enfriamiento antes de refrigerar.',
131
129
  },
132
- ],
133
-
134
- bibliography: [
135
- {
136
- name: 'Seguridad Alimentaria: USDA Guidelines',
137
- url: 'https://www.fsis.usda.gov/',
138
- },
139
- {
140
- name: 'Mise en Place - La Cocina Profesional',
141
- url: 'https://www.escoffier.edu/',
142
- },
143
- ],
144
-
145
- howTo: [
130
+ ], howTo: [
146
131
  {
147
132
  name: 'Crea múltiples temporizadores',
148
133
  text: 'Usa el botón \'+\' para añadir tantos temporizadores como necesites. Ideal para orquestar varios platos simultáneamente.',
@@ -160,8 +145,7 @@ export const content: ToolLocaleContent = {
160
145
  text: 'Autoriza notificaciones para que el navegador te avise cuando se acabe el tiempo, incluso si cambias de pestaña.',
161
146
  },
162
147
  ],
163
-
164
- seo: [
148
+ seo: [
165
149
  {
166
150
  type: 'title',
167
151
  text: 'Maestría Temporal en la Cocina',
@@ -223,6 +207,6 @@ export const content: ToolLocaleContent = {
223
207
  html: '<strong>Consejo profesional:</strong> La precisión del tiempo es lo que diferencia a un chef de un cocinero casero. Invierte en un buen temporizador y úsalo siempre. La experiencia te dice cuándo algo "se ve listo", pero el tiempo te garantiza consistencia.',
224
208
  },
225
209
  ],
226
-
227
- schemas: [faqSchema as any, howToSchema as any, appSchema as any],
210
+ bibliography,
211
+ schemas: [faqSchema as any, howToSchema as any, appSchema as any],
228
212
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Minuteur de Cuisine Multiple";
4
5
  const description = "Gérez plusieurs temps de cuisson simultanément. Alarmes indépendantes, idéal pour les chefs et l'organisation de la cuisine (Mise en Place).";
@@ -80,10 +81,7 @@ export const content: ToolLocaleContent = {
80
81
  title: 'Minuteur de Cuisine Multiple',
81
82
  description:
82
83
  'Gérez plusieurs temps de cuisson simultanément. Alarmes indépendantes, idéal pour les chefs et l\'organisation de la cuisine (Mise en Place).',
83
- faqTitle: 'Questions Fréquemment Posées',
84
- bibliographyTitle: 'Références',
85
-
86
- ui: {
84
+ faqTitle: 'Questions Fréquemment Posées', ui: {
87
85
  addTimer: 'Ajouter',
88
86
  stopAll: 'Tout Arrêter',
89
87
  defaultName: 'Minuteur',
@@ -129,20 +127,7 @@ export const content: ToolLocaleContent = {
129
127
  answer:
130
128
  'Entre 5°C et 65°C, les bactéries se multiplient rapidement. Les aliments cuits ne doivent pas rester dans cette plage plus de 2 heures (1 heure si la température dépasse 30°C). Utilisez un minuteur pour surveiller le refroidissement avant de réfrigérer.',
131
129
  },
132
- ],
133
-
134
- bibliography: [
135
- {
136
- name: 'Sécurité Alimentaire : Directives de l\'USDA',
137
- url: 'https://www.fsis.usda.gov/',
138
- },
139
- {
140
- name: 'Mise en Place - Cuisine Professionnelle (Escoffier)',
141
- url: 'https://www.escoffier.edu/',
142
- },
143
- ],
144
-
145
- howTo: [
130
+ ], howTo: [
146
131
  {
147
132
  name: 'Créer plusieurs minuteurs',
148
133
  text: 'Utilisez le bouton "+" pour ajouter autant de minuteurs que nécessaire. Parfait pour orchestrer plusieurs plats simultanément.',
@@ -160,8 +145,7 @@ export const content: ToolLocaleContent = {
160
145
  text: 'Autorisez les notifications pour que le navigateur vous alerte quand le temps est écoulé, même si vous changez d\'onglet.',
161
146
  },
162
147
  ],
163
-
164
- seo: [
148
+ seo: [
165
149
  {
166
150
  type: 'title',
167
151
  text: 'Maîtrise Temporelle en Cuisine',
@@ -223,6 +207,6 @@ export const content: ToolLocaleContent = {
223
207
  html: '<strong>Conseil de pro :</strong> La précision temporelle est ce qui sépare un chef d\'un cuisinier amateur. Investissez dans un bon minuteur et utilisez-le toujours. L\'expérience vous dit quand quelque chose "semble prêt", mais le temps garantit la régularité.',
224
208
  },
225
209
  ],
226
-
227
- schemas: [faqSchema as any, howToSchema as any, appSchema as any],
210
+ bibliography,
211
+ schemas: [faqSchema as any, howToSchema as any, appSchema as any],
228
212
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Pengatur Waktu Dapur Ganda";
4
5
  const description = "Kelola beberapa waktu memasak secara bersamaan. Alarm independen, ideal untuk koki dan organisasi dapur (Mise en Place).";
@@ -76,7 +77,6 @@ export const content: ToolLocaleContent = {
76
77
  title: 'Pengatur Waktu Dapur Ganda',
77
78
  description: 'Kelola beberapa waktu memasak secara bersamaan. Alarm independen, ideal untuk koki dan organisasi dapur (Mise en Place).',
78
79
  faqTitle: 'Pertanyaan Umum',
79
- bibliographyTitle: 'Referensi',
80
80
  ui: {
81
81
  addTimer: 'Tambah Timer',
82
82
  stopAll: 'Hentikan Semua',
@@ -101,18 +101,7 @@ export const content: ToolLocaleContent = {
101
101
  statusFinished: 'WAKTU HABIS!',
102
102
  finishNotification: 'Timer Selesai untuk',
103
103
  },
104
- faq,
105
- bibliography: [
106
- {
107
- name: 'Keamanan Pangan: USDA Guidelines',
108
- url: 'https://www.fsis.usda.gov/',
109
- },
110
- {
111
- name: 'Mise en Place - Dapur Profesional',
112
- url: 'https://www.escoffier.edu/',
113
- },
114
- ],
115
- howTo,
104
+ faq, howTo,
116
105
  seo: [
117
106
  {
118
107
  type: 'title',
@@ -166,5 +155,6 @@ export const content: ToolLocaleContent = {
166
155
  html: '<strong>Tips profesional:</strong> Presisi waktu membedakan koki dari pemasak rumahan. Gunakan teknologi untuk menjamin konsistensi.',
167
156
  },
168
157
  ],
158
+ bibliography,
169
159
  schemas: [faqSchema as any, howToSchema as any, appSchema as any],
170
160
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Timer da Cucina Multiplo";
4
5
  const description = "Gestisci più tempi di cottura contemporaneamente. Allarmi indipendenti, ideale per chef e per l'organizzazione in cucina (Mise en Place).";
@@ -76,7 +77,6 @@ export const content: ToolLocaleContent = {
76
77
  title: 'Timer da Cucina Multiplo',
77
78
  description: 'Gestisci più tempi di cottura contemporaneamente. Allarmi indipendenti, ideale per chef e per l\'organizzazione in cucina (Mise en Place).',
78
79
  faqTitle: 'Domande Frequenti',
79
- bibliographyTitle: 'Riferimenti',
80
80
  ui: {
81
81
  addTimer: 'Aggiungi Timer',
82
82
  stopAll: 'Ferma Tutti',
@@ -101,18 +101,7 @@ export const content: ToolLocaleContent = {
101
101
  statusFinished: 'TEMPO!',
102
102
  finishNotification: 'Timer terminato per',
103
103
  },
104
- faq,
105
- bibliography: [
106
- {
107
- name: 'Sicurezza Alimentare: USDA Guidelines',
108
- url: 'https://www.fsis.usda.gov/',
109
- },
110
- {
111
- name: 'Mise en Place - La Cucina Professionale',
112
- url: 'https://www.escoffier.edu/',
113
- },
114
- ],
115
- howTo,
104
+ faq, howTo,
116
105
  seo: [
117
106
  {
118
107
  type: 'title',
@@ -170,5 +159,6 @@ export const content: ToolLocaleContent = {
170
159
  html: '<strong>Consiglio professionale:</strong> la precisione del tempo distingue uno chef da un cuoco amatoriale. Affidati allo strumento per garantire costanza nei tuoi piatti.',
171
160
  },
172
161
  ],
162
+ bibliography,
173
163
  schemas: [faqSchema as any, howToSchema as any, appSchema as any],
174
164
  };