@jjlmoya/utils-cooking 1.2.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.
- package/package.json +60 -0
- package/src/category/i18n/en.ts +24 -0
- package/src/category/i18n/es.ts +208 -0
- package/src/category/i18n/fr.ts +24 -0
- package/src/category/index.ts +37 -0
- package/src/category/seo.astro +15 -0
- package/src/components/PreviewNavSidebar.astro +116 -0
- package/src/components/PreviewToolbar.astro +143 -0
- package/src/data.ts +11 -0
- package/src/env.d.ts +5 -0
- package/src/index.ts +32 -0
- package/src/layouts/PreviewLayout.astro +117 -0
- package/src/pages/[locale]/[slug].astro +146 -0
- package/src/pages/[locale].astro +251 -0
- package/src/pages/index.astro +4 -0
- package/src/tests/faq_count.test.ts +19 -0
- package/src/tests/i18n-titles.test.ts +66 -0
- package/src/tests/locale_completeness.test.ts +42 -0
- package/src/tests/mocks/astro_mock.js +2 -0
- package/src/tests/no_h1_in_components.test.ts +48 -0
- package/src/tests/seo_length.test.ts +22 -0
- package/src/tests/tool_validation.test.ts +17 -0
- package/src/tool/american-kitchen-converter/AmericanKitchenEngine.ts +259 -0
- package/src/tool/american-kitchen-converter/bibliography.astro +6 -0
- package/src/tool/american-kitchen-converter/component.astro +838 -0
- package/src/tool/american-kitchen-converter/i18n/en.ts +282 -0
- package/src/tool/american-kitchen-converter/i18n/es.ts +281 -0
- package/src/tool/american-kitchen-converter/i18n/fr.ts +292 -0
- package/src/tool/american-kitchen-converter/index.ts +24 -0
- package/src/tool/american-kitchen-converter/seo.astro +8 -0
- package/src/tool/banana-ripeness/BananaCare.css +587 -0
- package/src/tool/banana-ripeness/BananaEngine.ts +79 -0
- package/src/tool/banana-ripeness/bibliography.astro +6 -0
- package/src/tool/banana-ripeness/component.astro +285 -0
- package/src/tool/banana-ripeness/i18n/en.ts +177 -0
- package/src/tool/banana-ripeness/i18n/es.ts +177 -0
- package/src/tool/banana-ripeness/i18n/fr.ts +177 -0
- package/src/tool/banana-ripeness/index.ts +24 -0
- package/src/tool/banana-ripeness/seo.astro +8 -0
- package/src/tool/brine/bibliography.astro +6 -0
- package/src/tool/brine/component.astro +884 -0
- package/src/tool/brine/i18n/en.ts +221 -0
- package/src/tool/brine/i18n/es.ts +222 -0
- package/src/tool/brine/i18n/fr.ts +221 -0
- package/src/tool/brine/index.ts +26 -0
- package/src/tool/brine/seo.astro +8 -0
- package/src/tool/cookware-guide/CookwareGuide.css +487 -0
- package/src/tool/cookware-guide/bibliography.astro +6 -0
- package/src/tool/cookware-guide/component.astro +164 -0
- package/src/tool/cookware-guide/i18n/en.ts +163 -0
- package/src/tool/cookware-guide/i18n/es.ts +163 -0
- package/src/tool/cookware-guide/i18n/fr.ts +164 -0
- package/src/tool/cookware-guide/index.ts +24 -0
- package/src/tool/cookware-guide/init.ts +174 -0
- package/src/tool/cookware-guide/seo.astro +8 -0
- package/src/tool/egg-timer/EggTimer.css +503 -0
- package/src/tool/egg-timer/bibliography.astro +14 -0
- package/src/tool/egg-timer/component.astro +281 -0
- package/src/tool/egg-timer/i18n/en.ts +230 -0
- package/src/tool/egg-timer/i18n/es.ts +222 -0
- package/src/tool/egg-timer/i18n/fr.ts +121 -0
- package/src/tool/egg-timer/index.ts +27 -0
- package/src/tool/egg-timer/seo.astro +39 -0
- package/src/tool/ingredient-rescaler/IngredientRescaler.css +308 -0
- package/src/tool/ingredient-rescaler/bibliography.astro +6 -0
- package/src/tool/ingredient-rescaler/component.astro +107 -0
- package/src/tool/ingredient-rescaler/i18n/en.ts +265 -0
- package/src/tool/ingredient-rescaler/i18n/es.ts +268 -0
- package/src/tool/ingredient-rescaler/i18n/fr.ts +207 -0
- package/src/tool/ingredient-rescaler/index.ts +24 -0
- package/src/tool/ingredient-rescaler/init.ts +200 -0
- package/src/tool/ingredient-rescaler/seo.astro +8 -0
- package/src/tool/kitchen-timer/KitchenTimer.css +325 -0
- package/src/tool/kitchen-timer/bibliography.astro +6 -0
- package/src/tool/kitchen-timer/component.astro +341 -0
- package/src/tool/kitchen-timer/i18n/en.ts +154 -0
- package/src/tool/kitchen-timer/i18n/es.ts +154 -0
- package/src/tool/kitchen-timer/i18n/fr.ts +154 -0
- package/src/tool/kitchen-timer/index.ts +26 -0
- package/src/tool/kitchen-timer/init.ts +55 -0
- package/src/tool/kitchen-timer/lib/AudioHelper.ts +27 -0
- package/src/tool/kitchen-timer/lib/DockManager.ts +97 -0
- package/src/tool/kitchen-timer/lib/KitchenTimer.ts +264 -0
- package/src/tool/kitchen-timer/seo.astro +8 -0
- package/src/tool/meringue-peak/MeringueCalculator.css +298 -0
- package/src/tool/meringue-peak/bibliography.astro +6 -0
- package/src/tool/meringue-peak/component.astro +169 -0
- package/src/tool/meringue-peak/i18n/en.ts +257 -0
- package/src/tool/meringue-peak/i18n/es.ts +234 -0
- package/src/tool/meringue-peak/i18n/fr.ts +234 -0
- package/src/tool/meringue-peak/index.ts +24 -0
- package/src/tool/meringue-peak/seo.astro +8 -0
- package/src/tool/mold-scaler/MoldScaler.css +406 -0
- package/src/tool/mold-scaler/bibliography.astro +6 -0
- package/src/tool/mold-scaler/component.astro +126 -0
- package/src/tool/mold-scaler/i18n/en.ts +268 -0
- package/src/tool/mold-scaler/i18n/es.ts +269 -0
- package/src/tool/mold-scaler/i18n/fr.ts +276 -0
- package/src/tool/mold-scaler/index.ts +26 -0
- package/src/tool/mold-scaler/init.ts +264 -0
- package/src/tool/mold-scaler/seo.astro +8 -0
- package/src/tool/pizza/Pizza.css +569 -0
- package/src/tool/pizza/bibliography.astro +6 -0
- package/src/tool/pizza/calculator.ts +143 -0
- package/src/tool/pizza/component.astro +237 -0
- package/src/tool/pizza/i18n/en.ts +288 -0
- package/src/tool/pizza/i18n/es.ts +289 -0
- package/src/tool/pizza/i18n/fr.ts +288 -0
- package/src/tool/pizza/index.ts +27 -0
- package/src/tool/pizza/seo.astro +8 -0
- package/src/tool/roux-guide/RouxGuide.css +483 -0
- package/src/tool/roux-guide/bibliography.astro +6 -0
- package/src/tool/roux-guide/component.astro +194 -0
- package/src/tool/roux-guide/i18n/en.ts +233 -0
- package/src/tool/roux-guide/i18n/es.ts +225 -0
- package/src/tool/roux-guide/i18n/fr.ts +225 -0
- package/src/tool/roux-guide/index.ts +24 -0
- package/src/tool/roux-guide/init.ts +187 -0
- package/src/tool/roux-guide/seo.astro +8 -0
- package/src/tool/sourdough-calculator/SourdoughCalculator.css +369 -0
- package/src/tool/sourdough-calculator/bibliography.astro +6 -0
- package/src/tool/sourdough-calculator/component.astro +198 -0
- package/src/tool/sourdough-calculator/i18n/en.ts +242 -0
- package/src/tool/sourdough-calculator/i18n/es.ts +243 -0
- package/src/tool/sourdough-calculator/i18n/fr.ts +248 -0
- package/src/tool/sourdough-calculator/index.ts +24 -0
- package/src/tool/sourdough-calculator/init.ts +131 -0
- package/src/tool/sourdough-calculator/seo.astro +8 -0
- package/src/tools.ts +29 -0
- package/src/types.ts +73 -0
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
|
|
3
|
+
export const content: ToolLocaleContent = {
|
|
4
|
+
slug: 'cookware-selector',
|
|
5
|
+
title: 'Smart Cookware Selector | Kitchen Utensils Guide',
|
|
6
|
+
description: 'Interactive guide to choose the best pan or pot based on your cooking style. Iron vs Stainless Steel vs Teflon. Find your perfect tool.',
|
|
7
|
+
faqTitle: 'Frequently Asked Questions',
|
|
8
|
+
faq: [
|
|
9
|
+
{
|
|
10
|
+
question: 'What is the best pan for daily use?',
|
|
11
|
+
answer: 'For most people, a high-quality stainless steel pan or a well-seasoned cast iron are the best. Stainless is versatile and eternal, while iron offers natural non-stick without chemicals.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
question: 'Why does food stick to stainless steel?',
|
|
15
|
+
answer: 'Usually due to insufficient heat or adding food too early. Try the "Leidenfrost effect": heat the pan until a water droplet rolls like a pearl. Then it\'s ready.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: 'How do I know if my pan is safe?',
|
|
19
|
+
answer: 'Look for "PFOA Free" labels. Cast iron, carbon steel, and stainless steel are the safest and most durable options, as they have no coatings that degrade over time.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: 'What does it mean to "season" a pan?',
|
|
23
|
+
answer: 'It\'s the process of creating a layer of polymerized oil on the metal (iron or carbon). This protects against rust and creates a natural non-stick surface that improves with each use.',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
question: 'How much should I spend on a good pan?',
|
|
27
|
+
answer: 'A set of 2-3 medium-high quality pans (stainless or iron) can last 20+ years. It\'s better to invest well in one pan than to buy 5 cheap ones lasting 2 years. Quality over quantity.',
|
|
28
|
+
},
|
|
29
|
+
],
|
|
30
|
+
bibliographyTitle: 'Bibliography',
|
|
31
|
+
bibliography: [
|
|
32
|
+
{
|
|
33
|
+
name: 'The Flavor Bible - Pairing and Progress in Food',
|
|
34
|
+
url: 'https://www.flavorprints.com/',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
name: 'On Food and Cooking - Harold McGee (The Science of Cooking)',
|
|
38
|
+
url: 'https://www.foodscience.org/',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: 'Salt Fat Acid Heat - Samin Nosrat',
|
|
42
|
+
url: 'https://www.saltfatacidheat.com/',
|
|
43
|
+
},
|
|
44
|
+
],
|
|
45
|
+
howTo: [
|
|
46
|
+
{
|
|
47
|
+
name: 'Select your cooking style',
|
|
48
|
+
text: 'Choose between high heat (searing), delicate (eggs), stews (slow cooking) or quick cooking. Each style has distinct requirements.',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
name: 'Choose the ideal material',
|
|
52
|
+
text: 'Based on your style, the tool will recommend the best material: iron, stainless steel, copper, or teflon.',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
name: 'Read the characteristics',
|
|
56
|
+
text: 'Understand advantages, disadvantages, maintenance, and durability. Then choose the specific pan that fits your budget and needs.',
|
|
57
|
+
},
|
|
58
|
+
],
|
|
59
|
+
seo: [
|
|
60
|
+
{
|
|
61
|
+
type: 'title',
|
|
62
|
+
text: 'Pan Materials: Science and Practice',
|
|
63
|
+
level: 2,
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
type: 'paragraph',
|
|
67
|
+
html: 'Not all pans are equal. Each material has distinct thermodynamic properties that affect how it distributes heat, what temperatures it tolerates, and how it interacts with food. Understanding these differences is the key to choosing the right tool.',
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
type: 'title',
|
|
71
|
+
text: 'Cast Iron: The Classic',
|
|
72
|
+
level: 3,
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
type: 'paragraph',
|
|
76
|
+
html: '<strong>Advantages:</strong> Excellent heat retention, uniform distribution, natural non-stick (when seasoned), lasts centuries, improves with time. <strong>Disadvantages:</strong> Heavy, requires maintenance, can rust, takes longer to heat, not suitable for prolonged acids.',
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
type: 'title',
|
|
80
|
+
text: 'Stainless Steel: The Versatile',
|
|
81
|
+
level: 3,
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
type: 'paragraph',
|
|
85
|
+
html: '<strong>Advantages:</strong> Durable, requires no maintenance, suitable for acids (wines, tomatoes), easy to clean, versatile, relatively economical. <strong>Disadvantages:</strong> Not naturally non-stick, requires technique (preheat well), uneven heat distribution (better with multi-layer bottom).',
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
type: 'title',
|
|
89
|
+
text: 'Teflon/PTFE: The Convenient',
|
|
90
|
+
level: 3,
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
type: 'paragraph',
|
|
94
|
+
html: '<strong>Advantages:</strong> Instant non-stick, easy cooking, easy cleaning, economical. <strong>Disadvantages:</strong> Degrades over time and temperature, needs replacement every 3-5 years, unsafe at very high temperatures (>500°F), PTFE safety is debated.',
|
|
95
|
+
},
|
|
96
|
+
],
|
|
97
|
+
ui: {
|
|
98
|
+
cookingStyle: 'How do you usually cook?',
|
|
99
|
+
material: 'Material Type',
|
|
100
|
+
highHeat: 'High Heat',
|
|
101
|
+
sear: 'Sear / Seal',
|
|
102
|
+
delicate: 'Delicate',
|
|
103
|
+
fry: 'Eggs / Omelets',
|
|
104
|
+
stew: 'Stews',
|
|
105
|
+
slowCook: 'Slow Cooking',
|
|
106
|
+
fast: 'Fast',
|
|
107
|
+
quick: 'Quick Cooking',
|
|
108
|
+
recommendation: 'Recommendation',
|
|
109
|
+
characteristics: 'Characteristics',
|
|
110
|
+
castIron: 'Cast Iron',
|
|
111
|
+
stainlessSteel: 'Stainless Steel',
|
|
112
|
+
carbon: 'Carbon Steel',
|
|
113
|
+
copper: 'Copper',
|
|
114
|
+
nonstick: 'Non-stick (Teflon)',
|
|
115
|
+
advantages: 'Advantages',
|
|
116
|
+
disadvantages: 'Disadvantages',
|
|
117
|
+
maintenance: 'Maintenance',
|
|
118
|
+
durability: 'Durability',
|
|
119
|
+
heatRetention: 'Heat Retention',
|
|
120
|
+
price: 'Price',
|
|
121
|
+
step1: 'How do you usually cook?',
|
|
122
|
+
step2: 'Maintenance Level',
|
|
123
|
+
maintenanceLazy: 'Low / None',
|
|
124
|
+
maintenanceLazyDesc: 'No complications washing.',
|
|
125
|
+
maintenanceCare: 'Medium',
|
|
126
|
+
maintenanceCareDesc: 'Normal hand washing.',
|
|
127
|
+
maintenanceRitual: 'Ritual (High)',
|
|
128
|
+
maintenanceRitualDesc: 'I enjoy seasoning.',
|
|
129
|
+
idealPan: 'Your Ideal Pan',
|
|
130
|
+
selectOptions: 'Select options',
|
|
131
|
+
seeRecommendation: 'To see your recommendation',
|
|
132
|
+
pro: 'PRO',
|
|
133
|
+
con: 'CONS',
|
|
134
|
+
masterTip: 'Master Tip',
|
|
135
|
+
defaultTip: 'Combining stainless steel for searing and non-stick for eggs is the foundation of any efficient kitchen.',
|
|
136
|
+
stainlessName: 'Stainless Steel',
|
|
137
|
+
stainlessTag: 'The Pro All-rounder',
|
|
138
|
+
stainlessPro: 'Eternal and non-reactive. Perfect searing.',
|
|
139
|
+
stainlessCon: 'Requires technique (heat) to avoid sticking.',
|
|
140
|
+
stainlessTip: 'Use the Leidenfrost effect: heat until a water droplet rolls like a pearl.',
|
|
141
|
+
nonstickName: 'Non-stick',
|
|
142
|
+
nonstickTag: 'Maximum Comfort',
|
|
143
|
+
nonstickPro: 'Nothing sticks. Easy cleanup.',
|
|
144
|
+
nonstickCon: 'Short lifespan (2-3 years). No high heat.',
|
|
145
|
+
nonstickTip: 'Always hand wash and use wood/silicone utensils to double its life.',
|
|
146
|
+
castironName: 'Cast Iron',
|
|
147
|
+
castironTag: 'The Classic Forever',
|
|
148
|
+
castironPro: 'Incredible heat retention. Eternal.',
|
|
149
|
+
castironCon: 'Very heavy. Requires regular seasoning.',
|
|
150
|
+
castironTip: 'Heats slowly, but once hot it\'s a tank. Ideal for steaks.',
|
|
151
|
+
carbonName: 'Carbon Steel',
|
|
152
|
+
carbonTag: 'Fire Agility',
|
|
153
|
+
carbonPro: 'Light as steel, almost like iron.',
|
|
154
|
+
carbonCon: 'Rusts if left wet. Rough aesthetics.',
|
|
155
|
+
carbonTip: 'The darker and uglier it gets, the better it works. Wok masters\' secret.',
|
|
156
|
+
enamelName: 'Enameled Cast Iron',
|
|
157
|
+
enamelTag: 'Gourmet Quality',
|
|
158
|
+
enamelPro: 'Better slow cooking. Beautiful aesthetics.',
|
|
159
|
+
enamelCon: 'Very expensive. Enamel fragile to hard impacts.',
|
|
160
|
+
enamelTip: 'Perfect for endless braises. Enamel handles acids (tomato) without issues.',
|
|
161
|
+
},
|
|
162
|
+
schemas: [],
|
|
163
|
+
};
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
|
|
3
|
+
export const content: ToolLocaleContent = {
|
|
4
|
+
slug: 'selector-sartenes',
|
|
5
|
+
title: 'Selector de Sartenes Inteligente | Guía de Utensilios de Cocina',
|
|
6
|
+
description: 'Guía interactiva para elegir la mejor sartén u olla según tu estilo de cocina. Hierro vs Acero vs Teflón. Encuentra tu herramienta perfecta.',
|
|
7
|
+
faqTitle: 'Preguntas Frecuentes',
|
|
8
|
+
faq: [
|
|
9
|
+
{
|
|
10
|
+
question: '¿Cuál es la mejor sartén para uso diario?',
|
|
11
|
+
answer: 'Para la mayoría, una sartén de acero inoxidable de alta calidad o una de hierro fundido bien curada son las mejores. El acero es versátil y eterno, mientras que el hierro ofrece una antiadherencia natural sin químicos.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
question: '¿Por qué se pega la comida en el acero inoxidable?',
|
|
15
|
+
answer: 'Suele ser por falta de temperatura o por poner la comida antes de tiempo. Prueba el "efecto Leidenfrost": calienta la sartén hasta que una gota de agua ruede como una perla. Entonces está lista.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: '¿Cómo sé si mi sartén es segura?',
|
|
19
|
+
answer: 'Busca etiquetas "PFOA Free". Las sartenes de hierro, acero al carbono y acero inoxidable son las opciones más seguras y duraderas, ya que no tienen recubrimientos que se degraden con el tiempo.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: '¿Qué significa "curar" una sartén?',
|
|
23
|
+
answer: 'Es el proceso de crear una capa de aceite polimerizado sobre el metal (hierro o carbono). Esto protege contra el óxido y crea una superficie antiadherente natural que mejora con cada uso.',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
question: '¿Cuánto debo gastar en una buena sartén?',
|
|
27
|
+
answer: 'Un set de 2-3 sartenes de calidad media-alta (acero inoxidable o hierro) puede durar 20+ años. Es mejor invertir bien una sola sartén que comprar 5 baratas que duran 2 años. Calidad sobre cantidad.',
|
|
28
|
+
},
|
|
29
|
+
],
|
|
30
|
+
bibliographyTitle: 'Bibliografía',
|
|
31
|
+
bibliography: [
|
|
32
|
+
{
|
|
33
|
+
name: 'The Flavor Bible - Pairing, and Progress in Food',
|
|
34
|
+
url: 'https://www.flavorprints.com/',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
name: 'On Food and Cooking - Harold McGee (La Ciencia de la Cocina)',
|
|
38
|
+
url: 'https://www.foodscience.org/',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: 'Salt Fat Acid Heat - Samin Nosrat',
|
|
42
|
+
url: 'https://www.saltfatacidheat.com/',
|
|
43
|
+
},
|
|
44
|
+
],
|
|
45
|
+
howTo: [
|
|
46
|
+
{
|
|
47
|
+
name: 'Selecciona tu estilo de cocina',
|
|
48
|
+
text: 'Elige entre fuego alto (dorar), delicado (huevos), guisos (cocción lenta) o cocina rápida. Cada estilo tiene requirements distintos.',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
name: 'Elige el material ideal',
|
|
52
|
+
text: 'Basado en tu estilo, la herramienta te recomendará el mejor material: hierro, acero inoxidable, cobre o teflón.',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
name: 'Lee las características',
|
|
56
|
+
text: 'Entiende ventajas, desventajas, mantenimiento y durabilidad. Luego elige la sartén específica que se ajusta a tu presupuesto y necesidades.',
|
|
57
|
+
},
|
|
58
|
+
],
|
|
59
|
+
seo: [
|
|
60
|
+
{
|
|
61
|
+
type: 'title',
|
|
62
|
+
text: 'Materiales de Sartenes: Ciencia y Práctica',
|
|
63
|
+
level: 2,
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
type: 'paragraph',
|
|
67
|
+
html: 'No todas las sartenes son iguales. Cada material tiene propiedades termodinámicas distintas que afectan cómo distribuye el calor, qué temperaturas soporta, y cómo interactúa con los alimentos. Entender estas diferencias es la clave para elegir la herramienta correcta.',
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
type: 'title',
|
|
71
|
+
text: 'Hierro Fundido: La Clásica',
|
|
72
|
+
level: 3,
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
type: 'paragraph',
|
|
76
|
+
html: '<strong>Ventajas:</strong> Excelente retención de calor, distribucion uniforme, antiadherencia natural (cuando está curada), dura siglos, mejora con el tiempo. <strong>Desventajas:</strong> Pesada, requiere mantenimiento, puede oxidarse, tarda más en calentarse, no es apta para ácidos prolongados.',
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
type: 'title',
|
|
80
|
+
text: 'Acero Inoxidable: La Versátil',
|
|
81
|
+
level: 3,
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
type: 'paragraph',
|
|
85
|
+
html: '<strong>Ventajas:</strong> Durable, no requiere mantenimiento, apta para ácidos (vinos, tomates), fácil limpiar, versátil, relativamente económica. <strong>Desventajas:</strong> No antiadherente naturalmente, requiere técnica (precalentar bien), distribucion de calor desigual (mejor si tiene fondo multicapa).',
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
type: 'title',
|
|
89
|
+
text: 'Teflón/PTFE: La Conveniente',
|
|
90
|
+
level: 3,
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
type: 'paragraph',
|
|
94
|
+
html: '<strong>Ventajas:</strong> Antiadherente instant, fácil de cocinar, fácil de limpiar, económico. <strong>Desventajas:</strong> Se degrada con tiempo y temperatura, necesita reemplazo cada 3-5 años, no segura a temperaturas muy altas (>500°F), está en debate si PTFE es 100% seguro.',
|
|
95
|
+
},
|
|
96
|
+
],
|
|
97
|
+
ui: {
|
|
98
|
+
cookingStyle: '¿Cómo cocinas habitualmente?',
|
|
99
|
+
material: 'Tipo de Material',
|
|
100
|
+
highHeat: 'Fuego Alto',
|
|
101
|
+
sear: 'Dorar / Sellar',
|
|
102
|
+
delicate: 'Delicado',
|
|
103
|
+
fry: 'Huevos / Tortillas',
|
|
104
|
+
stew: 'Guisos',
|
|
105
|
+
slowCook: 'Cocción Lenta',
|
|
106
|
+
fast: 'Rápido',
|
|
107
|
+
quick: 'Cocina Rápida',
|
|
108
|
+
recommendation: 'Recomendación',
|
|
109
|
+
characteristics: 'Características',
|
|
110
|
+
castIron: 'Hierro Fundido',
|
|
111
|
+
stainlessSteel: 'Acero Inoxidable',
|
|
112
|
+
carbon: 'Acero al Carbono',
|
|
113
|
+
copper: 'Cobre',
|
|
114
|
+
nonstick: 'Antiadherente (Teflón)',
|
|
115
|
+
advantages: 'Ventajas',
|
|
116
|
+
disadvantages: 'Desventajas',
|
|
117
|
+
maintenance: 'Mantenimiento',
|
|
118
|
+
durability: 'Durabilidad',
|
|
119
|
+
heatRetention: 'Retención de Calor',
|
|
120
|
+
price: 'Precio',
|
|
121
|
+
step1: '¿Cómo cocinas habitualmente?',
|
|
122
|
+
step2: 'Nivel de Mantenimiento',
|
|
123
|
+
maintenanceLazy: 'Bajo / Nulo',
|
|
124
|
+
maintenanceLazyDesc: 'Sin complicaciones lavado.',
|
|
125
|
+
maintenanceCare: 'Medio',
|
|
126
|
+
maintenanceCareDesc: 'Lavado a mano normal.',
|
|
127
|
+
maintenanceRitual: 'Ritual (Alto)',
|
|
128
|
+
maintenanceRitualDesc: 'Disfruto del curado.',
|
|
129
|
+
idealPan: 'Tu Sartén Ideal',
|
|
130
|
+
selectOptions: 'Selecciona opciones',
|
|
131
|
+
seeRecommendation: 'Para ver tu recomendación',
|
|
132
|
+
pro: 'PRO',
|
|
133
|
+
con: 'CONTRA',
|
|
134
|
+
masterTip: 'Consejo Maestro',
|
|
135
|
+
defaultTip: 'Combinar una opción de acero para dorar y una antiadherente para huevos es la base de cualquier cocina eficiente.',
|
|
136
|
+
stainlessName: 'Acero Inoxidable',
|
|
137
|
+
stainlessTag: 'El Todoterreno Pro',
|
|
138
|
+
stainlessPro: 'Eterna y no reactiva. Dorado perfecto.',
|
|
139
|
+
stainlessCon: 'Requiere técnica (Tª) para no pegarse.',
|
|
140
|
+
stainlessTip: 'Usa el efecto Leidenfrost: cuando una gota de agua ruede como una perla, está lista.',
|
|
141
|
+
nonstickName: 'Antiadherente',
|
|
142
|
+
nonstickTag: 'Máxima Comodidad',
|
|
143
|
+
nonstickPro: 'Nada se pega. Fácil limpieza.',
|
|
144
|
+
nonstickCon: 'Dura poco (2-3 años). No fuego alto.',
|
|
145
|
+
nonstickTip: 'Lávala siempre a mano y usa utensilios de madera/silicona para duplicar su vida útil.',
|
|
146
|
+
castironName: 'Hierro Fundido',
|
|
147
|
+
castironTag: 'La Clásica de Siempre',
|
|
148
|
+
castironPro: 'Retención de calor increíble. Eterna.',
|
|
149
|
+
castironCon: 'Muy pesada. Requiere curado habitual.',
|
|
150
|
+
castironTip: 'Se calienta lento, pero una vez caliente es un tanque. Ideal para chuletones.',
|
|
151
|
+
carbonName: 'Acero al Carbono',
|
|
152
|
+
carbonTag: 'Agilidad en el Fuego',
|
|
153
|
+
carbonPro: 'Ligera como el acero, casi como hierro.',
|
|
154
|
+
carbonCon: 'Se oxida si se deja húmeda. Estética sufrida.',
|
|
155
|
+
carbonTip: 'Cuanto más negra y fea se pone, mejor funciona. Es el secreto de los mejores woks.',
|
|
156
|
+
enamelName: 'Hierro Esmaltado',
|
|
157
|
+
enamelTag: 'Calidad Gourmet',
|
|
158
|
+
enamelPro: 'Mejor cocción lenta. Preciosa estética.',
|
|
159
|
+
enamelCon: 'Muy cara. Esmalte frágil a golpes secos.',
|
|
160
|
+
enamelTip: 'Perfecta para guisos interminables. El esmalte permite cocinar ácidos (tomate) sin problemas.',
|
|
161
|
+
},
|
|
162
|
+
schemas: [],
|
|
163
|
+
};
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
|
|
3
|
+
export const content: ToolLocaleContent = {
|
|
4
|
+
slug: 'cookware-selector',
|
|
5
|
+
title: 'Smart Cookware Selector | Kitchen Utensils Guide',
|
|
6
|
+
description: 'Interactive guide to choose the best pan or pot based on your cooking style. Iron vs Stainless Steel vs Teflon. Find your perfect tool.',
|
|
7
|
+
faqTitle: 'Questions Fréquemment Posées',
|
|
8
|
+
bibliographyTitle: 'Bibliographie',
|
|
9
|
+
faq: [
|
|
10
|
+
{
|
|
11
|
+
question: 'What is the best pan for daily use?',
|
|
12
|
+
answer: 'For most people, a high-quality stainless steel pan or a well-seasoned cast iron are the best. Stainless is versatile and eternal, while iron offers natural non-stick without chemicals.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: 'Why does food stick to stainless steel?',
|
|
16
|
+
answer: 'Usually due to insufficient heat or adding food too early. Try the "Leidenfrost effect": heat the pan until a water droplet rolls like a pearl. Then it\'s ready.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: 'How do I know if my pan is safe?',
|
|
20
|
+
answer: 'Look for "PFOA Free" labels. Cast iron, carbon steel, and stainless steel are the safest and most durable options, as they have no coatings that degrade over time.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'What does it mean to "season" a pan?',
|
|
24
|
+
answer: 'It\'s the process of creating a layer of polymerized oil on the metal (iron or carbon). This protects against rust and creates a natural non-stick surface that improves with each use.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'How much should I spend on a good pan?',
|
|
28
|
+
answer: 'A set of 2-3 medium-high quality pans (stainless or iron) can last 20+ years. It\'s better to invest well in one pan than to buy 5 cheap ones lasting 2 years. Quality over quantity.',
|
|
29
|
+
},
|
|
30
|
+
],
|
|
31
|
+
bibliographyTitle: 'Bibliography',
|
|
32
|
+
bibliography: [
|
|
33
|
+
{
|
|
34
|
+
name: 'The Flavor Bible - Pairing and Progress in Food',
|
|
35
|
+
url: 'https://www.flavorprints.com/',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
name: 'On Food and Cooking - Harold McGee (The Science of Cooking)',
|
|
39
|
+
url: 'https://www.foodscience.org/',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: 'Salt Fat Acid Heat - Samin Nosrat',
|
|
43
|
+
url: 'https://www.saltfatacidheat.com/',
|
|
44
|
+
},
|
|
45
|
+
],
|
|
46
|
+
howTo: [
|
|
47
|
+
{
|
|
48
|
+
name: 'Select your cooking style',
|
|
49
|
+
text: 'Choose between high heat (searing), delicate (eggs), stews (slow cooking) or quick cooking. Each style has distinct requirements.',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
name: 'Choose the ideal material',
|
|
53
|
+
text: 'Based on your style, the tool will recommend the best material: iron, stainless steel, copper, or teflon.',
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
name: 'Read the characteristics',
|
|
57
|
+
text: 'Understand advantages, disadvantages, maintenance, and durability. Then choose the specific pan that fits your budget and needs.',
|
|
58
|
+
},
|
|
59
|
+
],
|
|
60
|
+
seo: [
|
|
61
|
+
{
|
|
62
|
+
type: 'title',
|
|
63
|
+
text: 'Pan Materials: Science and Practice',
|
|
64
|
+
level: 2,
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
type: 'paragraph',
|
|
68
|
+
html: 'Not all pans are equal. Each material has distinct thermodynamic properties that affect how it distributes heat, what temperatures it tolerates, and how it interacts with food. Understanding these differences is the key to choosing the right tool.',
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
type: 'title',
|
|
72
|
+
text: 'Cast Iron: The Classic',
|
|
73
|
+
level: 3,
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
type: 'paragraph',
|
|
77
|
+
html: '<strong>Advantages:</strong> Excellent heat retention, uniform distribution, natural non-stick (when seasoned), lasts centuries, improves with time. <strong>Disadvantages:</strong> Heavy, requires maintenance, can rust, takes longer to heat, not suitable for prolonged acids.',
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
type: 'title',
|
|
81
|
+
text: 'Stainless Steel: The Versatile',
|
|
82
|
+
level: 3,
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
type: 'paragraph',
|
|
86
|
+
html: '<strong>Advantages:</strong> Durable, requires no maintenance, suitable for acids (wines, tomatoes), easy to clean, versatile, relatively economical. <strong>Disadvantages:</strong> Not naturally non-stick, requires technique (preheat well), uneven heat distribution (better with multi-layer bottom).',
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
type: 'title',
|
|
90
|
+
text: 'Teflon/PTFE: The Convenient',
|
|
91
|
+
level: 3,
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
type: 'paragraph',
|
|
95
|
+
html: '<strong>Advantages:</strong> Instant non-stick, easy cooking, easy cleaning, economical. <strong>Disadvantages:</strong> Degrades over time and temperature, needs replacement every 3-5 years, unsafe at very high temperatures (>500°F), PTFE safety is debated.',
|
|
96
|
+
},
|
|
97
|
+
],
|
|
98
|
+
ui: {
|
|
99
|
+
cookingStyle: 'How do you usually cook?',
|
|
100
|
+
material: 'Material Type',
|
|
101
|
+
highHeat: 'High Heat',
|
|
102
|
+
sear: 'Sear / Seal',
|
|
103
|
+
delicate: 'Delicate',
|
|
104
|
+
fry: 'Eggs / Omelets',
|
|
105
|
+
stew: 'Stews',
|
|
106
|
+
slowCook: 'Slow Cooking',
|
|
107
|
+
fast: 'Fast',
|
|
108
|
+
quick: 'Quick Cooking',
|
|
109
|
+
recommendation: 'Recommendation',
|
|
110
|
+
characteristics: 'Characteristics',
|
|
111
|
+
castIron: 'Cast Iron',
|
|
112
|
+
stainlessSteel: 'Stainless Steel',
|
|
113
|
+
carbon: 'Carbon Steel',
|
|
114
|
+
copper: 'Copper',
|
|
115
|
+
nonstick: 'Non-stick (Teflon)',
|
|
116
|
+
advantages: 'Advantages',
|
|
117
|
+
disadvantages: 'Disadvantages',
|
|
118
|
+
maintenance: 'Maintenance',
|
|
119
|
+
durability: 'Durability',
|
|
120
|
+
heatRetention: 'Heat Retention',
|
|
121
|
+
price: 'Price',
|
|
122
|
+
step1: 'How do you usually cook?',
|
|
123
|
+
step2: 'Maintenance Level',
|
|
124
|
+
maintenanceLazy: 'Low / None',
|
|
125
|
+
maintenanceLazyDesc: 'No complications washing.',
|
|
126
|
+
maintenanceCare: 'Medium',
|
|
127
|
+
maintenanceCareDesc: 'Normal hand washing.',
|
|
128
|
+
maintenanceRitual: 'Ritual (High)',
|
|
129
|
+
maintenanceRitualDesc: 'I enjoy seasoning.',
|
|
130
|
+
idealPan: 'Your Ideal Pan',
|
|
131
|
+
selectOptions: 'Select options',
|
|
132
|
+
seeRecommendation: 'To see your recommendation',
|
|
133
|
+
pro: 'PRO',
|
|
134
|
+
con: 'CONS',
|
|
135
|
+
masterTip: 'Master Tip',
|
|
136
|
+
defaultTip: 'Combining stainless steel for searing and non-stick for eggs is the foundation of any efficient kitchen.',
|
|
137
|
+
stainlessName: 'Stainless Steel',
|
|
138
|
+
stainlessTag: 'The Pro All-rounder',
|
|
139
|
+
stainlessPro: 'Eternal and non-reactive. Perfect searing.',
|
|
140
|
+
stainlessCon: 'Requires technique (heat) to avoid sticking.',
|
|
141
|
+
stainlessTip: 'Use the Leidenfrost effect: heat until a water droplet rolls like a pearl.',
|
|
142
|
+
nonstickName: 'Non-stick',
|
|
143
|
+
nonstickTag: 'Maximum Comfort',
|
|
144
|
+
nonstickPro: 'Nothing sticks. Easy cleanup.',
|
|
145
|
+
nonstickCon: 'Short lifespan (2-3 years). No high heat.',
|
|
146
|
+
nonstickTip: 'Always hand wash and use wood/silicone utensils to double its life.',
|
|
147
|
+
castironName: 'Cast Iron',
|
|
148
|
+
castironTag: 'The Classic Forever',
|
|
149
|
+
castironPro: 'Incredible heat retention. Eternal.',
|
|
150
|
+
castironCon: 'Very heavy. Requires regular seasoning.',
|
|
151
|
+
castironTip: 'Heats slowly, but once hot it\'s a tank. Ideal for steaks.',
|
|
152
|
+
carbonName: 'Carbon Steel',
|
|
153
|
+
carbonTag: 'Fire Agility',
|
|
154
|
+
carbonPro: 'Light as steel, almost like iron.',
|
|
155
|
+
carbonCon: 'Rusts if left wet. Rough aesthetics.',
|
|
156
|
+
carbonTip: 'The darker and uglier it gets, the better it works. Wok masters\' secret.',
|
|
157
|
+
enamelName: 'Enameled Cast Iron',
|
|
158
|
+
enamelTag: 'Gourmet Quality',
|
|
159
|
+
enamelPro: 'Better slow cooking. Beautiful aesthetics.',
|
|
160
|
+
enamelCon: 'Very expensive. Enamel fragile to hard impacts.',
|
|
161
|
+
enamelTip: 'Perfect for endless braises. Enamel handles acids (tomato) without issues.',
|
|
162
|
+
},
|
|
163
|
+
schemas: [],
|
|
164
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { CookingToolEntry, ToolDefinition } from '../../types';
|
|
2
|
+
import CookwareGuideComponent from './component.astro';
|
|
3
|
+
import CookwareGuideSEO from './seo.astro';
|
|
4
|
+
import CookwareGuideBibliography from './bibliography.astro';
|
|
5
|
+
|
|
6
|
+
export const cookwareGuide: CookingToolEntry = {
|
|
7
|
+
id: 'cookware-guide',
|
|
8
|
+
icons: {
|
|
9
|
+
bg: 'mdi:chef-hat',
|
|
10
|
+
fg: 'mdi:pot-mix',
|
|
11
|
+
},
|
|
12
|
+
i18n: {
|
|
13
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
14
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
16
|
+
},
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export const COOKWARE_GUIDE_TOOL: ToolDefinition = {
|
|
20
|
+
entry: cookwareGuide,
|
|
21
|
+
Component: CookwareGuideComponent,
|
|
22
|
+
SEOComponent: CookwareGuideSEO,
|
|
23
|
+
BibliographyComponent: CookwareGuideBibliography,
|
|
24
|
+
};
|