@jjlmoya/utils-cooking 1.2.0 → 1.4.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 +1 -1
- package/src/tool/american-kitchen-converter/i18n/en.ts +76 -1
- package/src/tool/american-kitchen-converter/i18n/es.ts +76 -1
- package/src/tool/american-kitchen-converter/i18n/fr.ts +76 -1
- package/src/tool/banana-ripeness/i18n/en.ts +72 -1
- package/src/tool/banana-ripeness/i18n/es.ts +72 -1
- package/src/tool/banana-ripeness/i18n/fr.ts +72 -1
- package/src/tool/brine/i18n/en.ts +80 -1
- package/src/tool/brine/i18n/es.ts +80 -1
- package/src/tool/brine/i18n/fr.ts +80 -1
- package/src/tool/cookware-guide/i18n/en.ts +72 -1
- package/src/tool/cookware-guide/i18n/es.ts +72 -1
- package/src/tool/cookware-guide/i18n/fr.ts +72 -1
- package/src/tool/egg-timer/i18n/en.ts +76 -1
- package/src/tool/egg-timer/i18n/es.ts +76 -1
- package/src/tool/egg-timer/i18n/fr.ts +81 -1
- package/src/tool/ingredient-rescaler/i18n/es.ts +1 -1
- package/src/tool/ingredient-rescaler/i18n/fr.ts +72 -1
- package/src/tool/kitchen-timer/i18n/en.ts +76 -1
- package/src/tool/kitchen-timer/i18n/es.ts +76 -1
- package/src/tool/kitchen-timer/i18n/fr.ts +76 -1
- package/src/tool/meringue-peak/i18n/en.ts +76 -1
- package/src/tool/meringue-peak/i18n/es.ts +72 -1
- package/src/tool/meringue-peak/i18n/fr.ts +72 -1
- package/src/tool/pizza/i18n/en.ts +94 -1
- package/src/tool/pizza/i18n/es.ts +94 -1
- package/src/tool/pizza/i18n/fr.ts +94 -1
- package/src/tool/roux-guide/i18n/en.ts +76 -1
- package/src/tool/roux-guide/i18n/es.ts +72 -1
- package/src/tool/roux-guide/i18n/fr.ts +72 -1
- package/src/tool/sourdough-calculator/i18n/en.ts +72 -1
- package/src/tool/sourdough-calculator/i18n/es.ts +72 -1
- package/src/tool/sourdough-calculator/i18n/fr.ts +77 -1
|
@@ -1,5 +1,76 @@
|
|
|
1
1
|
import type { ToolLocaleContent } from "../../../types";
|
|
2
2
|
|
|
3
|
+
const title = "Calculateur de Meringue et Blancs en Neige Professionnel";
|
|
4
|
+
const description = "La plus simple mais la moins stable. Blancs et sucre fouettés à froid.";
|
|
5
|
+
const faq = [
|
|
6
|
+
{
|
|
7
|
+
question: "Quel est le ratio idéal blancs/sucre ?",
|
|
8
|
+
answer: "Le standard professionnel est un ratio de 1:2. Pour chaque gramme de blanc d'œuf, utilisez deux grammes de sucre pour assurer une structure stable et ferme.",
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
question: "Comment savoir si les blancs sont assez fermes ?",
|
|
12
|
+
answer: "Les blancs sont prêts quand ils forment une pointe verticale qui ne se courbe pas. Le mélange doit être très brillant, dense, et rester dans le bol même retourné.",
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: "Quelle meringue choisir pour un décor ?",
|
|
16
|
+
answer: "La meringue italienne est privilégiée car le sirop chaud 'cuit' les protéines, ce qui la rend stable et résistante à l'humidité pendant des heures.",
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: "Pourquoi mes blancs ne montent-ils pas ?",
|
|
20
|
+
answer: "La moindre trace de gras (jaune d'œuf, résidus sur le matériel) empêche la formation de la mousse. Utilisez toujours un bol en métal ou en verre parfaitement propre.",
|
|
21
|
+
},
|
|
22
|
+
];
|
|
23
|
+
const howTo = [
|
|
24
|
+
{
|
|
25
|
+
name: "Pesez vos blancs d'œufs",
|
|
26
|
+
text: "Utilisez une balance digitale. Une différence de 5g modifie déjà la quantité de sucre nécessaire.",
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
name: "Calculez le sucre",
|
|
30
|
+
text: "Entrez le poids dans l'outil pour obtenir les mesures exactes de sucre semoule et/ou glace.",
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
name: "Choisissez la technique",
|
|
34
|
+
text: "Française pour la cuisson simple, Italienne pour la stabilité, ou Suisse pour les crèmes soyeuses.",
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
name: "Fouettez jusqu'au brillant",
|
|
38
|
+
text: "Suivez le guide des temps jusqu'à obtenir une pointe ferme et verticale (le fameux bec d'oiseau).",
|
|
39
|
+
},
|
|
40
|
+
];
|
|
41
|
+
|
|
42
|
+
const faqSchema = {
|
|
43
|
+
'@context': 'https://schema.org',
|
|
44
|
+
'@type': 'FAQPage',
|
|
45
|
+
mainEntity: faq.map((item) => ({
|
|
46
|
+
'@type': 'Question',
|
|
47
|
+
name: item.question,
|
|
48
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
49
|
+
})),
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
const howToSchema = {
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'HowTo',
|
|
55
|
+
name: title,
|
|
56
|
+
description,
|
|
57
|
+
step: howTo.map((step) => ({
|
|
58
|
+
'@type': 'HowToStep',
|
|
59
|
+
name: step.name,
|
|
60
|
+
text: step.text,
|
|
61
|
+
})),
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
const appSchema = {
|
|
65
|
+
'@context': 'https://schema.org',
|
|
66
|
+
'@type': 'SoftwareApplication',
|
|
67
|
+
name: title,
|
|
68
|
+
description,
|
|
69
|
+
applicationCategory: 'UtilitiesApplication',
|
|
70
|
+
operatingSystem: 'Web',
|
|
71
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
72
|
+
};
|
|
73
|
+
|
|
3
74
|
export const content: ToolLocaleContent = {
|
|
4
75
|
slug: "calculateur-meringue-proportions-sucre-blancs-oeuf",
|
|
5
76
|
title: "Calculateur de Meringue et Blancs en Neige Professionnel",
|
|
@@ -230,5 +301,5 @@ export const content: ToolLocaleContent = {
|
|
|
230
301
|
html: "Notre calculateur automatise les calculs pour que vous puissiez vous concentrer sur le fouettage jusqu'au brillant parfait.",
|
|
231
302
|
},
|
|
232
303
|
],
|
|
233
|
-
schemas: [],
|
|
304
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
234
305
|
};
|
|
@@ -1,5 +1,98 @@
|
|
|
1
1
|
import type { ToolLocaleContent } from "../../../types";
|
|
2
2
|
|
|
3
|
+
const title = "Neapolitan Pizza Dough Calculator";
|
|
4
|
+
const description = "Calculate the exact proportions of flour, water, salt and yeast to prepare authentic Neapolitan pizza at home with professional results.";
|
|
5
|
+
const faq = [
|
|
6
|
+
{
|
|
7
|
+
question: "What is the ideal hydration for Neapolitan pizza?",
|
|
8
|
+
answer:
|
|
9
|
+
"According to AVPN protocol, standard hydration is 63-67%. For beginners, 60-62% is more manageable. For advanced pizzaiolos with strong flour (W300+), 70-75% produces extraordinary doughs but requires technique.",
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: "How long should the dough ferment?",
|
|
13
|
+
answer:
|
|
14
|
+
"Minimum 24 hours in fridge (4°C) to activate enzymes. Optimal is 48-72 hours. Beyond 72 hours, you need very strong flour (W300+) or the dough becomes too acidic.",
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: "Can I use dry yeast?",
|
|
18
|
+
answer:
|
|
19
|
+
"Yes. Dry yeast equals 0.4x fresh (1g dry = 2.5g fresh). Quality is similar, but fresh yeast provides more complex flavor.",
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: "Can I make Neapolitan pizza in a home oven?",
|
|
23
|
+
answer:
|
|
24
|
+
"Yes, but with adaptations. Preheat to maximum (250-280°C) with pizza stone for 45-60 minutes. Cooking will take 5-7 minutes instead of 60-90 seconds, but results are acceptable.",
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: "What flour should I use?",
|
|
28
|
+
answer:
|
|
29
|
+
"Ideal: Caputo Pizzeria (W260-280) or Manitoba (W350-400). Alternative: any flour with 11-13g protein per 100g. Avoid weak flours (W130-160) for long fermentations.",
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
question: "Why does the dough tear when stretching?",
|
|
33
|
+
answer:
|
|
34
|
+
"The gluten isn't relaxed. Let the ball rest 2-3 hours at room temperature. If it repeats, kneading was insufficient or flour is too weak.",
|
|
35
|
+
},
|
|
36
|
+
];
|
|
37
|
+
const howTo = [
|
|
38
|
+
{
|
|
39
|
+
name: "Calculate proportions",
|
|
40
|
+
text: "Use this calculator to get exact grams of each ingredient based on pizza quantity and ball weight.",
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: "Mix the dough",
|
|
44
|
+
text: "Combine flour with warm water (22-25°C), salt (dissolved first) and yeast. Knead 8-10 minutes with mixer or 15-20 minutes by hand.",
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: "Bulk ferment",
|
|
48
|
+
text: "Let entire dough ferment 1-2 hours at room temperature (20-25°C) until doubled in volume.",
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
name: "Divide into balls",
|
|
52
|
+
text: "Divide dough into portions of indicated weight. Rest 15-20 minutes before shaping balls.",
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
name: "Long fermentation",
|
|
56
|
+
text: "Place balls in sealed container in fridge (4°C) for 24-72 hours. This critical step generates flavor and digestibility.",
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
name: "Stretch and bake",
|
|
60
|
+
text: "Remove from cold 30 minutes before. Stretch from center outward. Bake at maximum temperature 60-90 seconds (wood) or 5-7 minutes (home).",
|
|
61
|
+
},
|
|
62
|
+
];
|
|
63
|
+
|
|
64
|
+
const faqSchema = {
|
|
65
|
+
'@context': 'https://schema.org',
|
|
66
|
+
'@type': 'FAQPage',
|
|
67
|
+
mainEntity: faq.map((item) => ({
|
|
68
|
+
'@type': 'Question',
|
|
69
|
+
name: item.question,
|
|
70
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
71
|
+
})),
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
const howToSchema = {
|
|
75
|
+
'@context': 'https://schema.org',
|
|
76
|
+
'@type': 'HowTo',
|
|
77
|
+
name: title,
|
|
78
|
+
description,
|
|
79
|
+
step: howTo.map((step) => ({
|
|
80
|
+
'@type': 'HowToStep',
|
|
81
|
+
name: step.name,
|
|
82
|
+
text: step.text,
|
|
83
|
+
})),
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
const appSchema = {
|
|
87
|
+
'@context': 'https://schema.org',
|
|
88
|
+
'@type': 'SoftwareApplication',
|
|
89
|
+
name: title,
|
|
90
|
+
description,
|
|
91
|
+
applicationCategory: 'UtilitiesApplication',
|
|
92
|
+
operatingSystem: 'Web',
|
|
93
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
94
|
+
};
|
|
95
|
+
|
|
3
96
|
export const content: ToolLocaleContent = {
|
|
4
97
|
slug: "neapolitan-pizza-dough-calculator-authentic-recipe",
|
|
5
98
|
title: "Neapolitan Pizza Dough Calculator",
|
|
@@ -284,5 +377,5 @@ export const content: ToolLocaleContent = {
|
|
|
284
377
|
html: "Our calculator automates specific proportions so you can focus on what matters most: technique and passion for the final product.",
|
|
285
378
|
},
|
|
286
379
|
],
|
|
287
|
-
schemas: [],
|
|
380
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
288
381
|
};
|
|
@@ -1,5 +1,98 @@
|
|
|
1
1
|
import type { ToolLocaleContent } from "../../../types";
|
|
2
2
|
|
|
3
|
+
const title = "Calculadora de Masa Pizza Napolitana";
|
|
4
|
+
const description = "Calcula las proporciones exactas de harina, agua, sal y levadura para preparar la auténtica pizza napolitana en casa.";
|
|
5
|
+
const faq = [
|
|
6
|
+
{
|
|
7
|
+
question: "¿Cuál es la hidratación ideal para la pizza napolitana?",
|
|
8
|
+
answer:
|
|
9
|
+
"Según el protocolo AVPN, la hidratación estándar es 63-67%. Para principiantes, 60-62% es más manejable. Para pizzeros avanzados con harina fuerte (W300+), 70-75% produce masas extraordinarias pero requiere técnica.",
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: "¿Cuánto tiempo debe fermentar la masa?",
|
|
13
|
+
answer:
|
|
14
|
+
"Mínimo 24 horas en nevera (4°C) para activar las enzimas. El óptimo es 48-72 horas. Más allá de 72 horas, necesitas harina muy fuerte (W300+) o la masa se vuelve ácida.",
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: "¿Se puede hacer con levadura seca?",
|
|
18
|
+
answer:
|
|
19
|
+
"Sí. La levadura seca equivale a 0.4x la fresca (1g seca = 2.5g fresca). La calidad es similar, pero la fresca aporta un sabor más completo.",
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: "¿Puedo hacer pizza napolitana en horno doméstico?",
|
|
23
|
+
answer:
|
|
24
|
+
"Sí, pero con adaptaciones. Precalienta a máximo (250-280°C) con piedra refractaria 45-60 minutos. La cocción durará 5-7 minutos en lugar de 60-90 segundos, pero el resultado es aceptable.",
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: "¿Qué harina debo usar?",
|
|
28
|
+
answer:
|
|
29
|
+
"Ideal: Caputo Pizzeria (W260-280) o Manitoba (W350-400). Alternativa: cualquier harina con 11-13g de proteína por 100g. Evita harinas débiles (W130-160) para fermentaciones largas.",
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
question: "¿La masa se rompe al estirar?",
|
|
33
|
+
answer:
|
|
34
|
+
"El gluten no está relajado. Deja reposar la bola 2-3 horas a temperatura ambiente. Si repites el error, el amasado fue insuficiente o la harina es muy débil.",
|
|
35
|
+
},
|
|
36
|
+
];
|
|
37
|
+
const howTo = [
|
|
38
|
+
{
|
|
39
|
+
name: "Calcula las proporciones",
|
|
40
|
+
text: "Usa esta calculadora para obtener los gramos exactos de cada ingrediente según el número de pizzas y el peso de cada bola.",
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: "Mezcla la masa",
|
|
44
|
+
text: "Combina la harina con agua tibia (22-25°C), sal (disuelta primero) y levadura. Amasa 8-10 minutos con amasadora o 15-20 minutos a mano.",
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: "Fermenta en bloque",
|
|
48
|
+
text: "Deja fermentar la masa entera 1-2 horas a temperatura ambiente (20-25°C) hasta que doble volumen.",
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
name: "Divide en bolas",
|
|
52
|
+
text: "Divide la masa en porciones del peso indicado. Deja reposar 15-20 minutos antes de formar bolas.",
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
name: "Fermentación larga",
|
|
56
|
+
text: "Coloca las bolas en recipiente hermético en nevera (4°C) durante 24-72 horas. Éste es el paso crítico que genera sabor y digestibilidad.",
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
name: "Estira y hornea",
|
|
60
|
+
text: "Saca del frío 30 minutos antes. Estira desde el centro hacia afuera. Hornea a máxima temperatura 60-90 segundos (leña) o 5-7 minutos (doméstico).",
|
|
61
|
+
},
|
|
62
|
+
];
|
|
63
|
+
|
|
64
|
+
const faqSchema = {
|
|
65
|
+
'@context': 'https://schema.org',
|
|
66
|
+
'@type': 'FAQPage',
|
|
67
|
+
mainEntity: faq.map((item) => ({
|
|
68
|
+
'@type': 'Question',
|
|
69
|
+
name: item.question,
|
|
70
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
71
|
+
})),
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
const howToSchema = {
|
|
75
|
+
'@context': 'https://schema.org',
|
|
76
|
+
'@type': 'HowTo',
|
|
77
|
+
name: title,
|
|
78
|
+
description,
|
|
79
|
+
step: howTo.map((step) => ({
|
|
80
|
+
'@type': 'HowToStep',
|
|
81
|
+
name: step.name,
|
|
82
|
+
text: step.text,
|
|
83
|
+
})),
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
const appSchema = {
|
|
87
|
+
'@context': 'https://schema.org',
|
|
88
|
+
'@type': 'SoftwareApplication',
|
|
89
|
+
name: title,
|
|
90
|
+
description,
|
|
91
|
+
applicationCategory: 'UtilitiesApplication',
|
|
92
|
+
operatingSystem: 'Web',
|
|
93
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
94
|
+
};
|
|
95
|
+
|
|
3
96
|
export const content: ToolLocaleContent = {
|
|
4
97
|
slug: "pizza",
|
|
5
98
|
title: "Calculadora de Masa Pizza Napolitana",
|
|
@@ -285,5 +378,5 @@ export const content: ToolLocaleContent = {
|
|
|
285
378
|
},
|
|
286
379
|
],
|
|
287
380
|
|
|
288
|
-
schemas: [],
|
|
381
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
289
382
|
};
|
|
@@ -1,5 +1,98 @@
|
|
|
1
1
|
import type { ToolLocaleContent } from "../../../types";
|
|
2
2
|
|
|
3
|
+
const title = "Calculateur de Pâte à Pizza Napolitaine";
|
|
4
|
+
const description = "Calculez les proportions exactes de farine, eau, sel et levure pour préparer une authentique pizza napolitaine maison avec des résultats professionnels.";
|
|
5
|
+
const faq = [
|
|
6
|
+
{
|
|
7
|
+
question: "Quelle est l'hydratation idéale pour une pizza napolitaine ?",
|
|
8
|
+
answer:
|
|
9
|
+
"Selon le protocole AVPN, l'hydratation standard est de 63-67%. Pour les débutants, 60-62% est plus gérable. Pour les pizzaiolos avancés avec une farine forte (W300+), 70-75% produit des pâtes extraordinaires mais nécessite de la technique.",
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: "Combien de temps la pâte doit-elle fermenter ?",
|
|
13
|
+
answer:
|
|
14
|
+
"Minimum 24 heures au frigo (4°C) pour activer les enzymes. L'optimal est de 48-72 heures. Au-delà de 72 heures, il faut une farine très forte (W300+) sinon la pâte devient trop acide.",
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: "Puis-je utiliser de la levure sèche ?",
|
|
18
|
+
answer:
|
|
19
|
+
"Oui. La levure sèche équivaut à 0,4x la fraîche (1g sèche = 2,5g fraîche). La qualité est similaire, mais la levure fraîche apporte un profil aromatique plus complexe.",
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: "Peut-on faire une pizza napolitaine dans un four domestique ?",
|
|
23
|
+
answer:
|
|
24
|
+
"Oui, mais avec des adaptations. Préchauffez au maximum (250-280°C) avec une pierre réfractaire pendant 45-60 minutes. La cuisson prendra 5-7 minutes au lieu de 60-90 secondes, mais le résultat est acceptable.",
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: "Quelle farine dois-je utiliser ?",
|
|
28
|
+
answer:
|
|
29
|
+
"Idéal : Caputo Pizzeria (W260-280) ou Manitoba (W350-400). Alternative : toute farine avec 11-13g de protéines pour 100g. Évitez les farines faibles (W130-160) pour les longues fermentations.",
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
question: "Pourquoi la pâte se déchire-t-elle lors de l'étalage ?",
|
|
33
|
+
answer:
|
|
34
|
+
"Le gluten n'est pas détendu. Laissez la boule reposer 2 à 3 heures à température ambiante. Si cela se répète, le pétrissage était insuffisant ou la farine est trop faible.",
|
|
35
|
+
},
|
|
36
|
+
];
|
|
37
|
+
const howTo = [
|
|
38
|
+
{
|
|
39
|
+
name: "Calculez les proportions",
|
|
40
|
+
text: "Utilisez ce calculateur pour obtenir les grammes exacts de chaque ingrédient selon le nombre de pizzas et le poids de chaque boule.",
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: "Mélangez la pâte",
|
|
44
|
+
text: "Mélangez la farine avec de l'eau tiède (22-25°C), le sel (dissous en premier) et la levure. Pétrissez 8-10 minutes au batteur ou 15-20 minutes à la main.",
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: "Fermentation en bloc",
|
|
48
|
+
text: "Laissez la pâte entière fermenter 1 à 2 heures à température ambiante (20-25°C) jusqu'à ce qu'elle double de volume.",
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
name: "Divisez en boules",
|
|
52
|
+
text: "Divisez la pâte en portions du poids indiqué. Laissez reposer 15-20 minutes avant de former les boules.",
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
name: "Longue fermentation",
|
|
56
|
+
text: "Placez les boules dans un récipient hermétique au frigo (4°C) pendant 24-72 heures. C'est l'étape critique pour le goût et la digestibilité.",
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
name: "Étalez et enfournez",
|
|
60
|
+
text: "Sortez du froid 30 minutes avant. Étalez du centre vers l'extérieur. Enfournez à température maximale 60-90 secondes (bois) ou 5-7 minutes (maison).",
|
|
61
|
+
},
|
|
62
|
+
];
|
|
63
|
+
|
|
64
|
+
const faqSchema = {
|
|
65
|
+
'@context': 'https://schema.org',
|
|
66
|
+
'@type': 'FAQPage',
|
|
67
|
+
mainEntity: faq.map((item) => ({
|
|
68
|
+
'@type': 'Question',
|
|
69
|
+
name: item.question,
|
|
70
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
71
|
+
})),
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
const howToSchema = {
|
|
75
|
+
'@context': 'https://schema.org',
|
|
76
|
+
'@type': 'HowTo',
|
|
77
|
+
name: title,
|
|
78
|
+
description,
|
|
79
|
+
step: howTo.map((step) => ({
|
|
80
|
+
'@type': 'HowToStep',
|
|
81
|
+
name: step.name,
|
|
82
|
+
text: step.text,
|
|
83
|
+
})),
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
const appSchema = {
|
|
87
|
+
'@context': 'https://schema.org',
|
|
88
|
+
'@type': 'SoftwareApplication',
|
|
89
|
+
name: title,
|
|
90
|
+
description,
|
|
91
|
+
applicationCategory: 'UtilitiesApplication',
|
|
92
|
+
operatingSystem: 'Web',
|
|
93
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
94
|
+
};
|
|
95
|
+
|
|
3
96
|
export const content: ToolLocaleContent = {
|
|
4
97
|
slug: "calculateur-pate-pizza-napolitaine-proportions-authentiques",
|
|
5
98
|
title: "Calculateur de Pâte à Pizza Napolitaine",
|
|
@@ -284,5 +377,5 @@ export const content: ToolLocaleContent = {
|
|
|
284
377
|
html: "Notre calculateur automatise les proportions spécifiques pour que vous puissiez vous concentrer sur l'essentiel : la technique et la passion pour le produit final.",
|
|
285
378
|
},
|
|
286
379
|
],
|
|
287
|
-
schemas: [],
|
|
380
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
288
381
|
};
|
|
@@ -1,5 +1,80 @@
|
|
|
1
1
|
import type { ToolLocaleContent } from "../../../types";
|
|
2
2
|
|
|
3
|
+
const title = "Professional Roux Ratio Calculator and Sauce Guide";
|
|
4
|
+
const description = "Master the foundation of French mother sauces. Calculate exact roux proportions for Béchamel, Velouté, and Espagnole with professional accuracy.";
|
|
5
|
+
const faq = [
|
|
6
|
+
{
|
|
7
|
+
question: "What is a Roux and why is it used?",
|
|
8
|
+
answer:
|
|
9
|
+
"A Roux is a mixture of equal parts fat and flour cooked together. It acts as the primary structure for French mother sauces, providing a smooth, stable thickness that doesn't separate.",
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: "What is the ideal proportion for a Roux?",
|
|
13
|
+
answer:
|
|
14
|
+
"The professional standard is a 1:1 ratio by weight. For example, 50g of butter to 50g of flour. This specific amount is designed to thicken approximately 1 liter of liquid safely.",
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: "How do the different types of Roux differ?",
|
|
18
|
+
answer:
|
|
19
|
+
"White Roux is cooked for 2-3 mins (best for Béchamel). Blond Roux for 5-8 mins (Velouté). Brown Roux for 15-20 mins (Espagnole). Darker roux offers more depth of flavor but provides less thickening power.",
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: "How can I avoid lumps in my sauce?",
|
|
23
|
+
answer:
|
|
24
|
+
"Follow the 'thermal shock' rule: add cold liquid to hot roux, or hot liquid to cold roux. Whisk constantly while adding the liquid in small increments to ensure total integration.",
|
|
25
|
+
},
|
|
26
|
+
];
|
|
27
|
+
const howTo = [
|
|
28
|
+
{
|
|
29
|
+
name: "Select your base liquid",
|
|
30
|
+
text: "Choose between milk, light stock, or dark stock depending on the mother sauce you are creating.",
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
name: "Define desired thickness",
|
|
34
|
+
text: "Decide if you need a light cream, a standard coating sauce, or a thick base for croquettes or fillings.",
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
name: "Input your liquid volume",
|
|
38
|
+
text: "Enter the total amount of liquid. Our calculator will provide the exact butter and flour weights required.",
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: "Apply the correct cook time",
|
|
42
|
+
text: "Cook your butter-flour mix to the specified level (White, Blond, or Brown) to match your sauce's flavor profile.",
|
|
43
|
+
},
|
|
44
|
+
];
|
|
45
|
+
|
|
46
|
+
const faqSchema = {
|
|
47
|
+
'@context': 'https://schema.org',
|
|
48
|
+
'@type': 'FAQPage',
|
|
49
|
+
mainEntity: faq.map((item) => ({
|
|
50
|
+
'@type': 'Question',
|
|
51
|
+
name: item.question,
|
|
52
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
53
|
+
})),
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
const howToSchema = {
|
|
57
|
+
'@context': 'https://schema.org',
|
|
58
|
+
'@type': 'HowTo',
|
|
59
|
+
name: title,
|
|
60
|
+
description,
|
|
61
|
+
step: howTo.map((step) => ({
|
|
62
|
+
'@type': 'HowToStep',
|
|
63
|
+
name: step.name,
|
|
64
|
+
text: step.text,
|
|
65
|
+
})),
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
const appSchema = {
|
|
69
|
+
'@context': 'https://schema.org',
|
|
70
|
+
'@type': 'SoftwareApplication',
|
|
71
|
+
name: title,
|
|
72
|
+
description,
|
|
73
|
+
applicationCategory: 'UtilitiesApplication',
|
|
74
|
+
operatingSystem: 'Web',
|
|
75
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
76
|
+
};
|
|
77
|
+
|
|
3
78
|
export const content: ToolLocaleContent = {
|
|
4
79
|
slug: "roux-ratio-calculator-thickening-sauce-guide",
|
|
5
80
|
title: "Professional Roux Ratio Calculator and Sauce Guide",
|
|
@@ -229,5 +304,5 @@ export const content: ToolLocaleContent = {
|
|
|
229
304
|
html: "Our roux ratio calculator ensures your sauces always have the perfect technical consistency for every dish.",
|
|
230
305
|
},
|
|
231
306
|
],
|
|
232
|
-
schemas: [],
|
|
307
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
233
308
|
};
|
|
@@ -1,5 +1,76 @@
|
|
|
1
1
|
import type { ToolLocaleContent } from '../../../types';
|
|
2
2
|
|
|
3
|
+
const title = "Guía Maestra de Roux y Salsas Madre";
|
|
4
|
+
const description = "Calculadora interactiva de Roux. Aprende a crear Bechamel, Velouté y Espagnole con proporciones exactas. La base de la alta cocina francesa.";
|
|
5
|
+
const faq = [
|
|
6
|
+
{
|
|
7
|
+
question: '¿Qué es un Roux y para qué sirve?',
|
|
8
|
+
answer: 'Es una mezcla de grasa (normalmente mantequilla) y harina cocinada a fuego lento. Se utiliza como agente espesante base para las salsas madre francesas como la Bechamel o la Velouté.',
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
question: '¿Cuál es la proporción ideal para un Roux?',
|
|
12
|
+
answer: 'La proporción estándar es 1:1 en peso. Por ejemplo, 50g de mantequilla y 50g de harina. Esta mezcla puede espesar aproximadamente 1 litro de líquido dependiendo de la densidad deseada.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: '¿Qué diferencia hay entre los tipos de Roux?',
|
|
16
|
+
answer: 'El Roux blanco se cocina 2-3 min (Bechamel). El rubio 5-8 min (Velouté). El oscuro o "Brown" hasta 15-20 min (Española). A más color, más sabor a nuez pero menos capacidad espesante.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: '¿Cómo evitar los grumos?',
|
|
20
|
+
answer: 'La regla de oro es la temperatura opuesta: líquido frío sobre roux caliente, o líquido caliente sobre roux frío. Añade el líquido poco a poco y bate constantemente con varillas.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: '¿Por qué necesito más roux oscuro?',
|
|
24
|
+
answer: 'Al tostar el roux, el calor rompe las cadenas de almidón en cadenas cortas (dextrinas). Estas son sabrosas pero menos efectivas espesando. Por eso un roux oscuro necesita 15% más peso que uno blanco para espesar igual.',
|
|
25
|
+
},
|
|
26
|
+
];
|
|
27
|
+
const howTo = [
|
|
28
|
+
{
|
|
29
|
+
name: 'Selecciona el tipo de líquido',
|
|
30
|
+
text: 'Elige entre leche (Bechamel), fondo claro (Velouté), fondo oscuro (Espagnole) o tomate. Cada uno requiere un tipo diferente de roux.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
name: 'Define el espesor deseado',
|
|
34
|
+
text: 'Desde sopa/crema hasta masa para croquetas. La calculadora ajustará automáticamente el ratio de roux necesario.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
name: 'Ingresa el volumen de líquido',
|
|
38
|
+
text: 'Especifica cuántos ml de líquido necesitas espesar. La calculadora te dirá exactamente cuánta mantequilla y harina usar.',
|
|
39
|
+
},
|
|
40
|
+
];
|
|
41
|
+
|
|
42
|
+
const faqSchema = {
|
|
43
|
+
'@context': 'https://schema.org',
|
|
44
|
+
'@type': 'FAQPage',
|
|
45
|
+
mainEntity: faq.map((item) => ({
|
|
46
|
+
'@type': 'Question',
|
|
47
|
+
name: item.question,
|
|
48
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
49
|
+
})),
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
const howToSchema = {
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'HowTo',
|
|
55
|
+
name: title,
|
|
56
|
+
description,
|
|
57
|
+
step: howTo.map((step) => ({
|
|
58
|
+
'@type': 'HowToStep',
|
|
59
|
+
name: step.name,
|
|
60
|
+
text: step.text,
|
|
61
|
+
})),
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
const appSchema = {
|
|
65
|
+
'@context': 'https://schema.org',
|
|
66
|
+
'@type': 'SoftwareApplication',
|
|
67
|
+
name: title,
|
|
68
|
+
description,
|
|
69
|
+
applicationCategory: 'UtilitiesApplication',
|
|
70
|
+
operatingSystem: 'Web',
|
|
71
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
72
|
+
};
|
|
73
|
+
|
|
3
74
|
export const content: ToolLocaleContent = {
|
|
4
75
|
slug: 'guia-maestro-roux',
|
|
5
76
|
title: 'Guía Maestra de Roux y Salsas Madre',
|
|
@@ -221,5 +292,5 @@ export const content: ToolLocaleContent = {
|
|
|
221
292
|
brown: 'Oscuro',
|
|
222
293
|
beurreManied: 'Beurre Manié (Si necesitas ajustar al final)',
|
|
223
294
|
},
|
|
224
|
-
schemas: [],
|
|
295
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
225
296
|
};
|
|
@@ -1,5 +1,76 @@
|
|
|
1
1
|
import type { ToolLocaleContent } from "../../../types";
|
|
2
2
|
|
|
3
|
+
const title = "Calculateur de Roux Professionnel et Sauces Mères";
|
|
4
|
+
const description = "Maîtrisez la base des sauces mères françaises. Calculez les proportions exactes de roux pour la Béchamel, le Velouté et la Sauce Espagnole.";
|
|
5
|
+
const faq = [
|
|
6
|
+
{
|
|
7
|
+
question: "Qu'est-ce qu'un Roux et à quoi sert-il ?",
|
|
8
|
+
answer: "Un Roux est un mélange à parts égales de matière grasse et de farine cuit à feu doux. C'est l'agent de liaison fondamental pour les sauces mères françaises comme la Béchamel ou le Velouté.",
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
question: "Quelle est la proportion idéale pour un Roux ?",
|
|
12
|
+
answer: "Le standard professionnel est un ratio de 1:1 en poids. Par exemple, 50g de beurre pour 50g de farine. Ce mélange est conçu pour lier environ 1 litre de liquide.",
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: "Quelle est la différence entre les types de Roux ?",
|
|
16
|
+
answer: "Le Roux Blanc cuit 2-3 min (Béchamel). Le Roux Blond 5-8 min (Velouté). Le Roux Brun 15-20 min (Espagnole). Plus il est foncé, plus il dégage de saveurs de noisette mais moins il a de pouvoir liant.",
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: "Comment éviter les grumeaux ?",
|
|
20
|
+
answer: "Appliquez la règle du choc thermique : versez un liquide froid sur un roux chaud, ou un liquide chaud sur un roux froid. Versez progressivement en fouettant énergiquement.",
|
|
21
|
+
},
|
|
22
|
+
];
|
|
23
|
+
const howTo = [
|
|
24
|
+
{
|
|
25
|
+
name: "Sélectionnez votre liquide",
|
|
26
|
+
text: "Choisissez entre le lait, un fond blanc ou un fond brun selon la sauce mère que vous souhaitez réaliser.",
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
name: "Définissez la texture",
|
|
30
|
+
text: "Décidez si vous avez besoin d'une crème légère, d'une sauce de nappage standard ou d'une base épaisse pour des croquettes.",
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
name: "Entrez le volume de liquide",
|
|
34
|
+
text: "Saisissez la quantité totale de liquide. Le calculateur vous donnera les poids exacts de beurre et de farine.",
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
name: "Respectez le temps de cuisson",
|
|
38
|
+
text: "Cuisez votre mélange beurre-farine jusqu'au stade souhaité (Blanc, Blond ou Brun) pour correspondre à votre recette.",
|
|
39
|
+
},
|
|
40
|
+
];
|
|
41
|
+
|
|
42
|
+
const faqSchema = {
|
|
43
|
+
'@context': 'https://schema.org',
|
|
44
|
+
'@type': 'FAQPage',
|
|
45
|
+
mainEntity: faq.map((item) => ({
|
|
46
|
+
'@type': 'Question',
|
|
47
|
+
name: item.question,
|
|
48
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
49
|
+
})),
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
const howToSchema = {
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'HowTo',
|
|
55
|
+
name: title,
|
|
56
|
+
description,
|
|
57
|
+
step: howTo.map((step) => ({
|
|
58
|
+
'@type': 'HowToStep',
|
|
59
|
+
name: step.name,
|
|
60
|
+
text: step.text,
|
|
61
|
+
})),
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
const appSchema = {
|
|
65
|
+
'@context': 'https://schema.org',
|
|
66
|
+
'@type': 'SoftwareApplication',
|
|
67
|
+
name: title,
|
|
68
|
+
description,
|
|
69
|
+
applicationCategory: 'UtilitiesApplication',
|
|
70
|
+
operatingSystem: 'Web',
|
|
71
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
72
|
+
};
|
|
73
|
+
|
|
3
74
|
export const content: ToolLocaleContent = {
|
|
4
75
|
slug: "calculateur-roux-proportions-sauce-bechamel-veloute",
|
|
5
76
|
title: "Calculateur de Roux Professionnel et Sauces Mères",
|
|
@@ -221,5 +292,5 @@ export const content: ToolLocaleContent = {
|
|
|
221
292
|
html: "Notre calculateur de roux garantit une consistance technique parfaite pour toutes vos créations culinaires.",
|
|
222
293
|
},
|
|
223
294
|
],
|
|
224
|
-
schemas: [],
|
|
295
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
225
296
|
};
|