@jjlmoya/utils-cooking 1.35.0 → 1.37.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/category/index.ts +6 -0
- package/src/entries.ts +7 -1
- package/src/index.ts +3 -0
- package/src/tests/brix-sorbet-density-calculator.test.ts +53 -0
- package/src/tests/i18n-titles.test.ts +2 -2
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/brix-sorbet-density-calculator/bibliography.astro +6 -0
- package/src/tool/brix-sorbet-density-calculator/bibliography.ts +10 -0
- package/src/tool/brix-sorbet-density-calculator/brix-sorbet-density-calculator.css +878 -0
- package/src/tool/brix-sorbet-density-calculator/component.astro +220 -0
- package/src/tool/brix-sorbet-density-calculator/entry.ts +26 -0
- package/src/tool/brix-sorbet-density-calculator/helpers.ts +102 -0
- package/src/tool/brix-sorbet-density-calculator/i18n/de.ts +295 -0
- package/src/tool/brix-sorbet-density-calculator/i18n/en.ts +295 -0
- package/src/tool/brix-sorbet-density-calculator/i18n/es.ts +295 -0
- package/src/tool/brix-sorbet-density-calculator/i18n/fr.ts +295 -0
- package/src/tool/brix-sorbet-density-calculator/i18n/id.ts +295 -0
- package/src/tool/brix-sorbet-density-calculator/i18n/it.ts +295 -0
- package/src/tool/brix-sorbet-density-calculator/i18n/ja.ts +295 -0
- package/src/tool/brix-sorbet-density-calculator/i18n/ko.ts +295 -0
- package/src/tool/brix-sorbet-density-calculator/i18n/nl.ts +295 -0
- package/src/tool/brix-sorbet-density-calculator/i18n/pl.ts +295 -0
- package/src/tool/brix-sorbet-density-calculator/i18n/pt.ts +295 -0
- package/src/tool/brix-sorbet-density-calculator/i18n/ru.ts +295 -0
- package/src/tool/brix-sorbet-density-calculator/i18n/sv.ts +295 -0
- package/src/tool/brix-sorbet-density-calculator/i18n/tr.ts +295 -0
- package/src/tool/brix-sorbet-density-calculator/i18n/zh.ts +295 -0
- package/src/tool/brix-sorbet-density-calculator/index.ts +11 -0
- package/src/tool/brix-sorbet-density-calculator/logic.ts +180 -0
- package/src/tool/brix-sorbet-density-calculator/script.ts +114 -0
- package/src/tool/brix-sorbet-density-calculator/seo.astro +15 -0
- package/src/tool/macaron-drying-predictor/bibliography.astro +6 -0
- package/src/tool/macaron-drying-predictor/bibliography.ts +14 -0
- package/src/tool/macaron-drying-predictor/component.astro +319 -0
- package/src/tool/macaron-drying-predictor/entry.ts +26 -0
- package/src/tool/macaron-drying-predictor/i18n/de.ts +245 -0
- package/src/tool/macaron-drying-predictor/i18n/en.ts +247 -0
- package/src/tool/macaron-drying-predictor/i18n/es.ts +245 -0
- package/src/tool/macaron-drying-predictor/i18n/fr.ts +245 -0
- package/src/tool/macaron-drying-predictor/i18n/id.ts +245 -0
- package/src/tool/macaron-drying-predictor/i18n/it.ts +245 -0
- package/src/tool/macaron-drying-predictor/i18n/ja.ts +245 -0
- package/src/tool/macaron-drying-predictor/i18n/ko.ts +245 -0
- package/src/tool/macaron-drying-predictor/i18n/nl.ts +245 -0
- package/src/tool/macaron-drying-predictor/i18n/pl.ts +245 -0
- package/src/tool/macaron-drying-predictor/i18n/pt.ts +245 -0
- package/src/tool/macaron-drying-predictor/i18n/ru.ts +245 -0
- package/src/tool/macaron-drying-predictor/i18n/sv.ts +245 -0
- package/src/tool/macaron-drying-predictor/i18n/tr.ts +245 -0
- package/src/tool/macaron-drying-predictor/i18n/zh.ts +245 -0
- package/src/tool/macaron-drying-predictor/index.ts +11 -0
- package/src/tool/macaron-drying-predictor/logic.ts +58 -0
- package/src/tool/macaron-drying-predictor/macaron-drying-predictor.css +551 -0
- package/src/tool/macaron-drying-predictor/seo.astro +15 -0
- package/src/tool/oil-smoke-point-tracker/bibliography.astro +6 -0
- package/src/tool/oil-smoke-point-tracker/bibliography.ts +10 -0
- package/src/tool/oil-smoke-point-tracker/component.astro +445 -0
- package/src/tool/oil-smoke-point-tracker/entry.ts +26 -0
- package/src/tool/oil-smoke-point-tracker/i18n/de.ts +285 -0
- package/src/tool/oil-smoke-point-tracker/i18n/en.ts +285 -0
- package/src/tool/oil-smoke-point-tracker/i18n/es.ts +285 -0
- package/src/tool/oil-smoke-point-tracker/i18n/fr.ts +285 -0
- package/src/tool/oil-smoke-point-tracker/i18n/id.ts +244 -0
- package/src/tool/oil-smoke-point-tracker/i18n/it.ts +244 -0
- package/src/tool/oil-smoke-point-tracker/i18n/ja.ts +244 -0
- package/src/tool/oil-smoke-point-tracker/i18n/ko.ts +244 -0
- package/src/tool/oil-smoke-point-tracker/i18n/nl.ts +244 -0
- package/src/tool/oil-smoke-point-tracker/i18n/pl.ts +244 -0
- package/src/tool/oil-smoke-point-tracker/i18n/pt.ts +244 -0
- package/src/tool/oil-smoke-point-tracker/i18n/ru.ts +244 -0
- package/src/tool/oil-smoke-point-tracker/i18n/sv.ts +244 -0
- package/src/tool/oil-smoke-point-tracker/i18n/tr.ts +244 -0
- package/src/tool/oil-smoke-point-tracker/i18n/zh.ts +244 -0
- package/src/tool/oil-smoke-point-tracker/index.ts +11 -0
- package/src/tool/oil-smoke-point-tracker/logic.ts +70 -0
- package/src/tool/oil-smoke-point-tracker/oil-smoke-point-tracker.css +937 -0
- package/src/tool/oil-smoke-point-tracker/seo.astro +15 -0
- package/src/tools.ts +6 -0
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
3
|
+
|
|
4
|
+
const title = 'Öl Rauchpunkt Tracker: Lebensdauer und Zersetzungsschätzung für Frittieröl';
|
|
5
|
+
const description = 'Überwachen Sie die Qualität von Frittieröl und schätzen Sie die aktuelle Rauchpunktabsenkung ein. Verfolgen Sie Nutzungen, Temperaturen und Lebensmittelarten, um die schädliche Anreicherung polarer Verbindungen zu vermeiden.';
|
|
6
|
+
|
|
7
|
+
const faq = [
|
|
8
|
+
{
|
|
9
|
+
question: 'Warum sinkt der Rauchpunkt von Frittieröl mit der Zeit?',
|
|
10
|
+
answer: 'Jedes Mal, wenn Öl auf Frittiertemperaturen erhitzt wird, zersetzen thermischer Abbau, Hydrolyse und Oxidation die Triglyceride in freie Fettsäuren (FFS), Monoacylglycerine und Diacylglycerine. Diese Abbauprodukte haben einen viel niedrigeren Siede- und Rauchpunkt als intakte Triglyceride, wodurch das Öl bei wiederholtem Gebrauch bereits bei niedrigeren Temperaturen zu rauchen beginnt.',
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
question: 'Was sind polare Verbindungen und warum sind sie reguliert?',
|
|
14
|
+
answer: 'Polare Verbindungen (TPC) sind die beim Frittieren entstehenden Abbauprodukte. Wenn sie 25 % des Ölgewichts überschreiten, gilt das Öl als zersetzt, oxidiert und gesundheitsschädlich - es verursacht Fehlaromen und potenzielle Herz-Kreislauf-Risiken. In vielen europäischen Ländern ist es gesetzlich vorgeschrieben, Frittieröl zu entsorgen, sobald der TPC-Wert 25 % übersteigt.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: 'Wie beeinflussen Panade oder Mehl den Ölabbau?',
|
|
18
|
+
answer: 'Panaden, Backteige und loses Mehl setzen Lebensmittelpartikel im heißen Öl frei. Diese Partikel verkohlen bei Temperaturen über 180 Grad Celsius schnell, setzen freie Fettsäuren frei und wirken als Katalysatoren, die den thermischen Abbau beschleunigen. Saubere Stärken wie Kartoffeln bauen Öl deutlich langsamer ab.',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
question: 'Was ist die sichere Grenze für die Wiederverwendung von Öl?',
|
|
22
|
+
answer: 'Als Faustregel können raffinierte Hochtemperaturöle wie Raps- oder Erdnussöl unter sauberen Bedingungen 5- bis 8-mal wiederverwendet werden. Unraffinierte Öle oder Öle, die Temperaturen über 190 Grad Celsius oder panierten Lebensmitteln ausgesetzt waren, sollten jedoch nach 1 bis 3 Verwendungen entsorgt werden.',
|
|
23
|
+
},
|
|
24
|
+
];
|
|
25
|
+
|
|
26
|
+
const howTo = [
|
|
27
|
+
{
|
|
28
|
+
name: 'Frittieröl-Typ auswählen',
|
|
29
|
+
text: 'Wählen Sie Ihr Öl aus der Datenbankliste. Raffinierte Hochtemperaturöle haben einen höheren Ausgangsrauchpunkt als unraffinierte Optionen.',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: 'Frittierzyklen verfolgen',
|
|
33
|
+
text: 'Geben Sie die Gesamtzahl der Frittiervorgänge ein, die die aktuelle Ölcharge bereits durchlaufen hat.',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
name: 'Frittiertemperatur eingeben',
|
|
37
|
+
text: 'Passen Sie den Schieberegler an die Durchschnittstemperatur Ihrer Frittiervorgänge an. Temperaturen über 180 Grad Celsius beschleunigen den Abbau.',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'Art der Lebensmittelbeschichtung bestimmen',
|
|
41
|
+
text: 'Geben Sie an, ob Sie saubere Stärken oder mehlierte/panierte Lebensmittel frittieren, die karbonisierte Rückstände hinterlassen.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Rauchpunkt und Entsorgungsstatus prüfen',
|
|
45
|
+
text: 'Überprüfen Sie den abgesenkten Rauchpunkt und die Entsorgungsanzeige. Entsorgen Sie das Öl sofort, wenn die Ölqualität den kritischen Bereich erreicht.',
|
|
46
|
+
},
|
|
47
|
+
];
|
|
48
|
+
|
|
49
|
+
const faqSchema = {
|
|
50
|
+
'@context': 'https://schema.org' as const,
|
|
51
|
+
'@type': 'FAQPage' as const,
|
|
52
|
+
mainEntity: faq.map((item) => ({
|
|
53
|
+
'@type': 'Question' as const,
|
|
54
|
+
name: item.question,
|
|
55
|
+
acceptedAnswer: { '@type': 'Answer' as const, text: item.answer },
|
|
56
|
+
})),
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
const howToSchema = {
|
|
60
|
+
'@context': 'https://schema.org' as const,
|
|
61
|
+
'@type': 'HowTo' as const,
|
|
62
|
+
name: title,
|
|
63
|
+
description,
|
|
64
|
+
step: howTo.map((step) => ({
|
|
65
|
+
'@type': 'HowToStep' as const,
|
|
66
|
+
name: step.name,
|
|
67
|
+
text: step.text,
|
|
68
|
+
})),
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
const appSchema = {
|
|
72
|
+
'@context': 'https://schema.org' as const,
|
|
73
|
+
'@type': 'SoftwareApplication' as const,
|
|
74
|
+
name: title,
|
|
75
|
+
description,
|
|
76
|
+
applicationCategory: 'UtilitiesApplication',
|
|
77
|
+
operatingSystem: 'Web',
|
|
78
|
+
offers: { '@type': 'Offer' as const, price: '0', priceCurrency: 'USD' },
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
export const content: ToolLocaleContent = {
|
|
82
|
+
slug: 'oel-rauchpunkt-tracker',
|
|
83
|
+
title: 'Öl Rauchpunkt Tracker',
|
|
84
|
+
description: 'Überwachen Sie die Qualität von Frittieröl und schätzen Sie die aktuelle Rauchpunktabsenkung ein. Verfolgen Sie Nutzungen, Temperaturen und Lebensmittelarten, um die schädliche Anreicherung polarer Verbindungen zu vermeiden.',
|
|
85
|
+
faqTitle: 'Häufig Gestellte Fragen',
|
|
86
|
+
ui: {
|
|
87
|
+
oilPresetLabel: 'Frittieröl-Typ',
|
|
88
|
+
presetAvocadoRefined: 'Avocadoöl (Raffiniert)',
|
|
89
|
+
presetSunflowerRefined: 'Sonnenblumenöl (Raffiniert)',
|
|
90
|
+
presetPeanutRefined: 'Erdnussöl (Raffiniert)',
|
|
91
|
+
presetCanolaRefined: 'Rapsöl (Raffiniert)',
|
|
92
|
+
presetOliveEV: 'Natives Olivenöl Extra',
|
|
93
|
+
presetOlivePomace: 'Oliventresteröl',
|
|
94
|
+
presetCoconutUnrefined: 'Kokosöl (Unraffiniert)',
|
|
95
|
+
presetSunflowerUnrefined: 'Sonnenblumenöl (Unraffiniert)',
|
|
96
|
+
usesLabel: 'Frittierzyklen (Verwendungen)',
|
|
97
|
+
tempLabel: 'Frittiertemperatur',
|
|
98
|
+
foodTypeLabel: 'Lebensmittelzubereitung / Panade',
|
|
99
|
+
optionStarch: 'Saubere Stärke (Kartoffeln, Pommes Frites)',
|
|
100
|
+
optionBreading: 'Mehlierte, Backteig- oder Panierte Lebensmittel',
|
|
101
|
+
baseSmokePointLabel: 'Ausgangsrauchpunkt',
|
|
102
|
+
currentSmokePointLabel: 'Abgesenkter Rauchpunkt',
|
|
103
|
+
polarCompoundsLabel: 'Polare Verbindungen (TPC)',
|
|
104
|
+
polymerizationLabel: 'Öl-Polymerisationszustand',
|
|
105
|
+
statusLabel: 'Öl-Sicherheitsprofil',
|
|
106
|
+
statusGood: 'SICHER ZUR WIEDERVERWENDUNG',
|
|
107
|
+
statusCaution: 'VORSICHT - BALD FILTERN',
|
|
108
|
+
statusDiscard: 'SOFORT ENTSORGEN',
|
|
109
|
+
adviceGood: 'Die Öleigenschaften sind stabil. Frittieren Sie weiter, aber filtern Sie nach dem Abkühlen restliche Lebensmittelpartikel heraus.',
|
|
110
|
+
adviceCaution: 'Der Abbau hat begonnen. Der Rauchpunkt ist gesunken. Wir empfehlen, zu filtern und nur noch einmal zu verwenden.',
|
|
111
|
+
adviceDiscard: 'Kritischer Abbau erreicht. Hohe Konzentration polarer Verbindungen. Entsorgen, um Ranzigkeit und Gesundheitsrisiken zu vermeiden.',
|
|
112
|
+
gaugeSafe: 'Sicher',
|
|
113
|
+
gaugeCaution: 'Achtung',
|
|
114
|
+
gaugeDiscard: 'Entsorgen',
|
|
115
|
+
limitLabel: 'Grenze',
|
|
116
|
+
},
|
|
117
|
+
faq,
|
|
118
|
+
howTo,
|
|
119
|
+
seo: [
|
|
120
|
+
{
|
|
121
|
+
type: 'title',
|
|
122
|
+
text: 'Die Chemie des Frittierens: Warum Öle sich zersetzen',
|
|
123
|
+
level: 2,
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
type: 'paragraph',
|
|
127
|
+
html: 'Frittieren ist eine der chemisch intensivsten Kochtechniken. Wenn Lebensmittel bei hohen Temperaturen (typischerweise zwischen 160 und 190 Grad Celsius) in Öl eingetaucht werden, ist das Öl gleichzeitig Hitze, Feuchtigkeit aus den Lebensmitteln und Sauerstoff aus der Luft ausgesetzt. Dies löst drei verschiedene chemische Reaktionen aus: Hydrolyse (Wasser spaltet Esterbindungen), Oxidation (Sauerstoff erzeugt Hydroperoxide) und Polymerisation (abgebaute Moleküle verbinden sich zu dicken, zähflüssigen Ketten). Mit fortschreitenden Reaktionen steigt die Konzentration der gesamten polaren Verbindungen (TPC), und die Temperatur, bei der das Öl zu zerfallen und zu rauchen beginnt, sinkt erheblich.',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'stats',
|
|
131
|
+
columns: 4,
|
|
132
|
+
items: [
|
|
133
|
+
{
|
|
134
|
+
value: '25 % TPC',
|
|
135
|
+
label: 'Gesetzliche Entsorgungsgrenze',
|
|
136
|
+
icon: 'mdi:alert-octagon',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
value: '180 °C',
|
|
140
|
+
label: 'Kritische Temperaturschwelle',
|
|
141
|
+
icon: 'mdi:thermometer-alert',
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
value: '2,2x',
|
|
145
|
+
label: 'Abbaurate mit Panade',
|
|
146
|
+
icon: 'mdi:chart-timeline-variant',
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
value: 'FFS',
|
|
150
|
+
label: 'Ursache: Freie Fettsäuren',
|
|
151
|
+
icon: 'mdi:molecule',
|
|
152
|
+
},
|
|
153
|
+
],
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: 'title',
|
|
157
|
+
text: 'Polare Verbindungen und Gesundheitsvorschriften',
|
|
158
|
+
level: 3,
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
type: 'paragraph',
|
|
162
|
+
html: 'Die gesamten polaren Verbindungen (TPC) dienen als internationaler Standard zur Messung des Abbaugrads von Frittierfetten. In professionellen Küchen ist die Verwendung von Öl mit einer TPC-Konzentration von über 25 % in mehreren Ländern aus Sicherheitsgründen gesetzlich verboten. Diese polaren Verbindungen wirken als Absorptionshemmer, verringern die Kocheffizienz und beeinträchtigen die Knusprigkeit der frittierten Kruste. Noch wichtiger: Der regelmäßige Verzehr von oxidiertem Öl trägt zur Aufnahme freier Radikale und toxischer Verbindungen bei, die mit Herz-Kreislauf-Problemen in Verbindung gebracht werden.',
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
type: 'title',
|
|
166
|
+
text: 'Öltypen im Vergleich: Ausgangsrauchpunkte',
|
|
167
|
+
level: 3,
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
type: 'comparative',
|
|
171
|
+
columns: 2,
|
|
172
|
+
items: [
|
|
173
|
+
{
|
|
174
|
+
title: 'Raffinierte Öle (Hochtemperatur)',
|
|
175
|
+
icon: 'mdi:shield-check',
|
|
176
|
+
description: 'Öle, die behandelt wurden, um flüchtige Verbindungen, freie Fettsäuren und Verunreinigungen zu entfernen. Sie haben außergewöhnlich hohe Ausgangsrauchpunkte.',
|
|
177
|
+
points: [
|
|
178
|
+
'Raffiniertes Avocadoöl: 270 °C / 518 °F',
|
|
179
|
+
'Raffiniertes Sonnenblumenöl: 232 °C / 450 °F',
|
|
180
|
+
'Raffiniertes Erdnussöl: 232 °C / 450 °F',
|
|
181
|
+
'Hohe Beständigkeit gegen anfänglichen Abbau',
|
|
182
|
+
],
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
title: 'Unraffinierte Öle (Niedrigtemperatur / Aromatisch)',
|
|
186
|
+
icon: 'mdi:leaf',
|
|
187
|
+
description: 'Kaltgepresste oder native Öle mit hohem Gehalt an natürlichen Elementen, Mineralien und freien Fettsäuren.',
|
|
188
|
+
highlight: true,
|
|
189
|
+
points: [
|
|
190
|
+
'Natives Olivenöl Extra: 190 °C / 374 °F',
|
|
191
|
+
'Unraffiniertes Kokosöl: 177 °C / 350 °F',
|
|
192
|
+
'Unraffiniertes Sonnenblumenöl: 107 °C / 225 °F',
|
|
193
|
+
'Zersetzt sich unter Hitze extrem schnell',
|
|
194
|
+
],
|
|
195
|
+
},
|
|
196
|
+
],
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
type: 'title',
|
|
200
|
+
text: 'Referenztabelle: Rauchpunkt und Maximale Wiederverwendung von Frittieröl',
|
|
201
|
+
level: 3,
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
type: 'table',
|
|
205
|
+
headers: ['Ölsorte', 'Ausgangsrauchpunkt (°C)', 'Ausgangsrauchpunkt (°F)', 'Zustand / Verarbeitung', 'Empfohlene Max. Verwendungen'],
|
|
206
|
+
rows: [
|
|
207
|
+
['Avocadoöl (Raffiniert)', '270 °C', '518 °F', 'Raffiniert', '10 bis 12 Verwendungen'],
|
|
208
|
+
['Oliventresteröl', '238 °C', '460 °F', 'Raffiniert', '8 bis 10 Verwendungen'],
|
|
209
|
+
['Sonnenblumenöl (Raffiniert)', '232 °C', '450 °F', 'Raffiniert', '6 bis 8 Verwendungen'],
|
|
210
|
+
['Erdnussöl (Raffiniert)', '232 °C', '450 °F', 'Raffiniert', '6 bis 8 Verwendungen'],
|
|
211
|
+
['Rapsöl (Raffiniert)', '204 °C', '400 °F', 'Raffiniert', '5 bis 7 Verwendungen'],
|
|
212
|
+
['Natives Olivenöl Extra', '190 °C', '374 °F', 'Kaltgepresst', '2 bis 3 Verwendungen'],
|
|
213
|
+
['Kokosöl (Unraffiniert)', '177 °C', '350 °F', 'Unraffiniert', '1 bis 2 Verwendungen'],
|
|
214
|
+
['Sonnenblumenöl (Unraffiniert)', '107 °C', '225 °F', 'Unraffiniert', 'Nicht zum Frittieren verwenden'],
|
|
215
|
+
],
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
type: 'title',
|
|
219
|
+
text: 'Kritische Warnsignale für zersetztes Öl',
|
|
220
|
+
level: 3,
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
type: 'diagnostic',
|
|
224
|
+
variant: 'warning',
|
|
225
|
+
title: 'Gefahr: Wenn Frittieröl giftig wird',
|
|
226
|
+
html: 'Verwenden Sie das Öl nicht weiter, wenn Sie eines der folgenden Symptome bemerken: <strong>ranziger oder seifiger Geruch</strong>, eine dunkle und trübe Farbe oder <strong>übermäßige Schaumbildung</strong> um die Lebensmittel herum. Wenn das Öl bei normalen Kochtemperaturen (170-180 °C) zu rauchen beginnt, ist der Rauchpunkt aufgrund einer extremen Anreicherung freier Fettsäuren (FFS) drastisch gesunken. Das Kochen mit zersetztem Öl überträgt giftige polare Verbindungen und krebserregende Elemente auf Ihre Lebensmittel und schadet sowohl Geschmack als auch Gesundheit.',
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
type: 'title',
|
|
230
|
+
text: 'So verlängern Sie die Qualität von Frittieröl',
|
|
231
|
+
level: 3,
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
type: 'tip',
|
|
235
|
+
title: 'Karbonisierte Rückstände sofort herausfiltern',
|
|
236
|
+
html: 'Das Frittieren von panierten oder mehlierten Lebensmitteln hinterlässt Mikropartikel, die sich am Boden der Fritteuse absetzen. Diese Partikel verkohlen während des Kochens weiter und wirken als Katalysatoren, die den Ölabbau beschleunigen. Um diesen Prozess zu verlangsamen, schöpfen Sie während des Frittierens stets die Oberfläche ab und <strong>filtern Sie das abgekühlte Öl</strong> nach jeder Frittiersession durch ein feines Sieb, ein Passiertuch oder einen Kaffeefilter. Bewahren Sie gefiltertes Öl in einem verschlossenen Glasbehälter an einem dunklen, kühlen Ort auf.',
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
type: 'title',
|
|
240
|
+
text: 'Bewährte Verfahren für das Frittieren',
|
|
241
|
+
level: 3,
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
type: 'list',
|
|
245
|
+
items: [
|
|
246
|
+
'<strong>Lebensmitteloberflächen gründlich trocknen</strong> - Überschüssige Feuchtigkeit löst eine schnelle Hydrolyse aus und zersetzt das Öl in freie Fettsäuren.',
|
|
247
|
+
'<strong>Vor dem Frittieren nicht salzen</strong> - Salz wirkt als Katalysator, der die Öloxidation beschleunigt; würzen Sie Lebensmittel sofort nach dem Herausnehmen aus dem heißen Öl.',
|
|
248
|
+
'<strong>Optimale Temperaturen einhalten</strong> - Bleiben Sie zwischen 170 °C und 180 °C. Höhere Temperaturen beschleunigen den thermischen Abbau, niedrigere führen dazu, dass Lebensmittel überschüssiges Fett aufnehmen.',
|
|
249
|
+
'<strong>Kein frisches Öl nachfüllen</strong> - Das Mischen von frischem Öl mit zersetztem Öl beschleunigt den Abbau des neuen Öls, anstatt es wiederherzustellen.',
|
|
250
|
+
],
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
type: 'title',
|
|
254
|
+
text: 'Glossar: Frittieren und Lipidabbau',
|
|
255
|
+
level: 3,
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
type: 'glossary',
|
|
259
|
+
items: [
|
|
260
|
+
{
|
|
261
|
+
term: 'Rauchpunkt',
|
|
262
|
+
definition: 'Die Temperatur, bei der ein Öl oder Fett beginnt, sich kontinuierlich zu zersetzen und sichtbaren bläulichen Rauch zu erzeugen, wobei Acrolein freigesetzt wird.',
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
term: 'Gesamte Polare Verbindungen (TPC)',
|
|
266
|
+
definition: 'Der weltweite Standardindikator für den Ölabbau, der den Gesamtgewichtsanteil an oxidierten Verbindungen, FFS und Polymeren darstellt.',
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
term: 'Hydrolyse',
|
|
270
|
+
definition: 'Eine chemische Reaktion, bei der Wassermoleküle Triglyceride in freie Fettsäuren und Glycerin spalten. Ausgelöst durch Lebensmittelfeuchtigkeit.',
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
term: 'Polymerisation',
|
|
274
|
+
definition: 'Der Prozess, bei dem sich hitzegeschädigte Ölmoleküle zu großen makromolekularen Strukturen verbinden, wodurch die Ölviskosität steigt.',
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
term: 'Freie Fettsäuren (FFS)',
|
|
278
|
+
definition: 'Carbonsäuren, die bei der Hydrolyse aus Triglyceriden freigesetzt werden. Sie senken direkt den Ausgangsrauchpunkt des Fettes.',
|
|
279
|
+
},
|
|
280
|
+
],
|
|
281
|
+
},
|
|
282
|
+
],
|
|
283
|
+
bibliography,
|
|
284
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
285
|
+
};
|
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
3
|
+
|
|
4
|
+
const title = 'Oil Smoke Point Tracker: Deep Frying Oil Lifespan & Degradation Estimator';
|
|
5
|
+
const description = 'Monitor deep frying oil quality and estimate current smoke point declines. Track uses, temperatures, and food types to prevent harmful polar compound accumulation.';
|
|
6
|
+
|
|
7
|
+
const faq = [
|
|
8
|
+
{
|
|
9
|
+
question: 'Why does frying oil smoke point drop over time?',
|
|
10
|
+
answer: 'Every time oil is heated to frying temperatures, thermal degradation, hydrolysis, and oxidation break down triglycerides into free fatty acids (FFAs), monoacylglycerols, and diacylglycerols. These breakdown products have a much lower boiling and smoke point than intact triglycerides, causing the oil to smoke at lower temperatures with repeated use.',
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
question: 'What are polar compounds and why are they regulated?',
|
|
14
|
+
answer: 'Polar compounds (TPC) are the degradation products formed during frying. When they exceed 25% of the oil weight, the oil is considered degraded, oxidized, and harmful to consume, causing off-flavors and potential cardiovascular risks. Many European countries legally mandate discarding frying oil when TPC exceeds 25%.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: 'How does breading or flour affect oil degradation?',
|
|
18
|
+
answer: 'Breading, batters, and loose flour drop food particles into the hot oil. These particles quickly char and carbonize at temperatures above 180 degrees Celsius, releasing free fatty acids and acting as catalysts that accelerate thermal degradation. Clean starches like potatoes degrade oil much more slowly.',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
question: 'What is the safe limit for oil reuse?',
|
|
22
|
+
answer: 'As a rule of thumb, refined high-heat oils like canola or peanut can be reused 5 to 8 times under clean conditions. However, unrefined oils or oils exposed to temperatures above 190 degrees Celsius or breaded foods should be discarded after 1 to 3 uses.',
|
|
23
|
+
},
|
|
24
|
+
];
|
|
25
|
+
|
|
26
|
+
const howTo = [
|
|
27
|
+
{
|
|
28
|
+
name: 'Select Frying Oil Type',
|
|
29
|
+
text: 'Choose your oil from the database list. High-heat refined oils have a higher starting smoke point than unrefined options.',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: 'Track Frying Cycles',
|
|
33
|
+
text: 'Input the total number of frying sessions the current batch of oil has undergone.',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
name: 'Enter Frying Temperature',
|
|
37
|
+
text: 'Adjust the slider to match the average temperature of your frying sessions. Temperatures above 180 degrees Celsius accelerate breakdown.',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'Identify Food Coating Type',
|
|
41
|
+
text: 'Specify if you are frying clean starches or floured/breaded foods which leave carbonized residue.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Check Smoke Point & Discard Status',
|
|
45
|
+
text: 'Review the degraded smoke point and discard gauge. Discard immediately if the oil health enters the critical zone.',
|
|
46
|
+
},
|
|
47
|
+
];
|
|
48
|
+
|
|
49
|
+
const faqSchema = {
|
|
50
|
+
'@context': 'https://schema.org' as const,
|
|
51
|
+
'@type': 'FAQPage' as const,
|
|
52
|
+
mainEntity: faq.map((item) => ({
|
|
53
|
+
'@type': 'Question' as const,
|
|
54
|
+
name: item.question,
|
|
55
|
+
acceptedAnswer: { '@type': 'Answer' as const, text: item.answer },
|
|
56
|
+
})),
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
const howToSchema = {
|
|
60
|
+
'@context': 'https://schema.org' as const,
|
|
61
|
+
'@type': 'HowTo' as const,
|
|
62
|
+
name: title,
|
|
63
|
+
description,
|
|
64
|
+
step: howTo.map((step) => ({
|
|
65
|
+
'@type': 'HowToStep' as const,
|
|
66
|
+
name: step.name,
|
|
67
|
+
text: step.text,
|
|
68
|
+
})),
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
const appSchema = {
|
|
72
|
+
'@context': 'https://schema.org' as const,
|
|
73
|
+
'@type': 'SoftwareApplication' as const,
|
|
74
|
+
name: title,
|
|
75
|
+
description,
|
|
76
|
+
applicationCategory: 'UtilitiesApplication',
|
|
77
|
+
operatingSystem: 'Web',
|
|
78
|
+
offers: { '@type': 'Offer' as const, price: '0', priceCurrency: 'USD' },
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
export const content: ToolLocaleContent = {
|
|
82
|
+
slug: 'oil-smoke-point-tracker',
|
|
83
|
+
title: 'Oil Smoke Point Tracker',
|
|
84
|
+
description: 'Monitor deep frying oil quality and estimate current smoke point declines. Track uses, temperatures, and food types to prevent harmful polar compound accumulation.',
|
|
85
|
+
faqTitle: 'Frequently Asked Questions',
|
|
86
|
+
ui: {
|
|
87
|
+
oilPresetLabel: 'Frying Oil Type',
|
|
88
|
+
presetAvocadoRefined: 'Avocado Oil (Refined)',
|
|
89
|
+
presetSunflowerRefined: 'Sunflower Oil (Refined)',
|
|
90
|
+
presetPeanutRefined: 'Peanut Oil (Refined)',
|
|
91
|
+
presetCanolaRefined: 'Canola Oil (Refined)',
|
|
92
|
+
presetOliveEV: 'Extra Virgin Olive Oil',
|
|
93
|
+
presetOlivePomace: 'Olive Pomace Oil',
|
|
94
|
+
presetCoconutUnrefined: 'Coconut Oil (Unrefined)',
|
|
95
|
+
presetSunflowerUnrefined: 'Sunflower Oil (Unrefined)',
|
|
96
|
+
usesLabel: 'Frying Cycles (Uses)',
|
|
97
|
+
tempLabel: 'Frying Temperature',
|
|
98
|
+
foodTypeLabel: 'Food Preparation / Coating',
|
|
99
|
+
optionStarch: 'Clean Starch (Potatoes, French Fries)',
|
|
100
|
+
optionBreading: 'Floured, Batter or Breaded Foods',
|
|
101
|
+
baseSmokePointLabel: 'Base Smoke Point',
|
|
102
|
+
currentSmokePointLabel: 'Degraded Smoke Point',
|
|
103
|
+
polarCompoundsLabel: 'Polar Compounds (TPC)',
|
|
104
|
+
polymerizationLabel: 'Oil Polymerization Health',
|
|
105
|
+
statusLabel: 'Oil Safety Profile',
|
|
106
|
+
statusGood: 'SAFE TO REUSE',
|
|
107
|
+
statusCaution: 'CAUTION - FILTER SOON',
|
|
108
|
+
statusDiscard: 'DISCARD IMMEDIATELY',
|
|
109
|
+
adviceGood: 'Oil properties are stable. Keep frying, but filter out residual food particles after cool down.',
|
|
110
|
+
adviceCaution: 'Degradation has begun. Smoke point has dropped. We recommend filtering and using only one more time.',
|
|
111
|
+
adviceDiscard: 'Critical degradation reached. High concentration of polar compounds. Discard to prevent rancidity and health risks.',
|
|
112
|
+
gaugeSafe: 'Safe',
|
|
113
|
+
gaugeCaution: 'Caution',
|
|
114
|
+
gaugeDiscard: 'Discard',
|
|
115
|
+
limitLabel: 'Limit',
|
|
116
|
+
},
|
|
117
|
+
faq,
|
|
118
|
+
howTo,
|
|
119
|
+
seo: [
|
|
120
|
+
{
|
|
121
|
+
type: 'title',
|
|
122
|
+
text: 'The Chemistry of Deep Frying: Why Oils Degrade',
|
|
123
|
+
level: 2,
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
type: 'paragraph',
|
|
127
|
+
html: 'Deep frying is one of the most chemically intense cooking techniques. When food is submerged in oil at high temperatures (typically between 160 and 190 degrees Celsius), the oil is simultaneously exposed to heat, moisture from the food, and oxygen from the air. This triggers three distinct chemical reactions: hydrolysis (water breaking down ester bonds), oxidation (oxygen creating hydroperoxides), and polymerization (degraded molecules bonding into thick, viscous chains). As these reactions proceed, the concentration of total polar compounds (TPC) increases, and the temperature at which the oil begins to break down and smoke drops significantly.',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'stats',
|
|
131
|
+
columns: 4,
|
|
132
|
+
items: [
|
|
133
|
+
{
|
|
134
|
+
value: '25% TPC',
|
|
135
|
+
label: 'Legal Discard Limit',
|
|
136
|
+
icon: 'mdi:alert-octagon',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
value: '180°C',
|
|
140
|
+
label: 'Critical Temp Threshold',
|
|
141
|
+
icon: 'mdi:thermometer-alert',
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
value: '2.2x',
|
|
145
|
+
label: 'Breading Decay Rate',
|
|
146
|
+
icon: 'mdi:chart-timeline-variant',
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
value: 'FFA',
|
|
150
|
+
label: 'Free Fatty Acids Cause',
|
|
151
|
+
icon: 'mdi:molecule',
|
|
152
|
+
},
|
|
153
|
+
],
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: 'title',
|
|
157
|
+
text: 'Polar Compounds and Health Regulations',
|
|
158
|
+
level: 3,
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
type: 'paragraph',
|
|
162
|
+
html: 'Total Polar Compounds (TPC) serve as the international standard for measuring the degradation level of frying fats. In professional kitchens, using oil with a TPC concentration exceeding 25% is legally prohibited in several countries due to safety concerns. These polar compounds are absorption inhibitors, reduce cooking efficiency, and degrade the crispness of the fried crust. More importantly, consuming oxidized oil regularly contributes to the ingestion of free radicals and toxic compounds that are associated with cardiovascular issues.',
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
type: 'title',
|
|
166
|
+
text: 'Comparing Oil Types: Starting Smoke Points',
|
|
167
|
+
level: 3,
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
type: 'comparative',
|
|
171
|
+
columns: 2,
|
|
172
|
+
items: [
|
|
173
|
+
{
|
|
174
|
+
title: 'Refined Oils (High Heat)',
|
|
175
|
+
icon: 'mdi:shield-check',
|
|
176
|
+
description: 'Oils processed to remove volatile compounds, free fatty acids, and impurities. They have exceptionally high starting smoke points.',
|
|
177
|
+
points: [
|
|
178
|
+
'Refined Avocado: 270°C / 518°F',
|
|
179
|
+
'Refined Sunflower: 232°C / 450°F',
|
|
180
|
+
'Refined Peanut: 232°C / 450°F',
|
|
181
|
+
'High resistance to initial breakdown',
|
|
182
|
+
],
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
title: 'Unrefined Oils (Low Heat, Flavorful)',
|
|
186
|
+
icon: 'mdi:leaf',
|
|
187
|
+
description: 'Cold-pressed or virgin oils containing high amounts of natural elements, minerals, and free fatty acids.',
|
|
188
|
+
highlight: true,
|
|
189
|
+
points: [
|
|
190
|
+
'Extra Virgin Olive: 190°C / 374°F',
|
|
191
|
+
'Unrefined Coconut: 177°C / 350°F',
|
|
192
|
+
'Unrefined Sunflower: 107°C / 225°F',
|
|
193
|
+
'Degrades extremely quickly under heat',
|
|
194
|
+
],
|
|
195
|
+
},
|
|
196
|
+
],
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
type: 'title',
|
|
200
|
+
text: 'Frying Oil Smoke Point & Maximum Reuse Reference Table',
|
|
201
|
+
level: 3,
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
type: 'table',
|
|
205
|
+
headers: ['Oil Variety', 'Base Smoke Point (°C)', 'Base Smoke Point (°F)', 'State / Processing', 'Recommended Max Uses'],
|
|
206
|
+
rows: [
|
|
207
|
+
['Avocado Oil (Refined)', '270°C', '518°F', 'Refined', '10 to 12 uses'],
|
|
208
|
+
['Olive Pomace Oil', '238°C', '460°F', 'Refined', '8 to 10 uses'],
|
|
209
|
+
['Sunflower Oil (Refined)', '232°C', '450°F', 'Refined', '6 to 8 uses'],
|
|
210
|
+
['Peanut Oil (Refined)', '232°C', '450°F', 'Refined', '6 to 8 uses'],
|
|
211
|
+
['Canola Oil (Refined)', '204°C', '400°F', 'Refined', '5 to 7 uses'],
|
|
212
|
+
['Extra Virgin Olive Oil', '190°C', '374°F', 'Cold-Pressed', '2 to 3 uses'],
|
|
213
|
+
['Coconut Oil (Unrefined)', '177°C', '350°F', 'Unrefined', '1 to 2 uses'],
|
|
214
|
+
['Sunflower Oil (Unrefined)', '107°C', '225°F', 'Unrefined', 'Do not use for deep frying'],
|
|
215
|
+
],
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
type: 'title',
|
|
219
|
+
text: 'Critical Warning Signs of Degraded Oil',
|
|
220
|
+
level: 3,
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
type: 'diagnostic',
|
|
224
|
+
variant: 'warning',
|
|
225
|
+
title: 'Danger: When Frying Oil Turns Toxic',
|
|
226
|
+
html: 'Do not continue reusing oil if you observe any of the following symptoms: <strong>rancid or soapy smell</strong>, a dark and turbid color, or <strong>excessive foaming</strong> around food. If the oil begins to smoke at normal cooking temperatures (170-180°C), it indicates the smoke point has plummeted due to extreme accumulation of Free Fatty Acids (FFA). Cooking with degraded oil transfers toxic polar compounds and carcinogenic elements into your food, harming both flavor and health.',
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
type: 'title',
|
|
230
|
+
text: 'How to Extend Frying Oil Quality',
|
|
231
|
+
level: 3,
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
type: 'tip',
|
|
235
|
+
title: 'Filter Out Carbonized Residues Immediately',
|
|
236
|
+
html: 'Frying batter or floured foods leaves micro-particles that settle at the bottom of the fryer. These particles continue to char during cooking, acting as catalysts that accelerate oil decay. To slow this process, always skim the surface during frying, and <strong>filter the cooled oil</strong> through a fine mesh, cheesecloth, or coffee filter after every single frying session. Store filtered oil in a sealed glass container in a dark, cool place.',
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
type: 'title',
|
|
240
|
+
text: 'Best Practices for Deep Frying',
|
|
241
|
+
level: 3,
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
type: 'list',
|
|
245
|
+
items: [
|
|
246
|
+
'<strong>Dry food surfaces thoroughly</strong> - Excess moisture triggers rapid hydrolysis, breaking oil down into free fatty acids.',
|
|
247
|
+
'<strong>Avoid salting before frying</strong> - Salt acts as a catalyst that speeds up oil oxidation; season foods immediately after removing them from the hot oil.',
|
|
248
|
+
'<strong>Maintain optimal temperatures</strong> - Stay between 170°C and 180°C. Going higher accelerates thermal breakdown, while dropping lower causes food to absorb excess grease.',
|
|
249
|
+
'<strong>Do not top off old oil</strong> - Mixing fresh oil with degraded oil accelerates the breakdown of the new oil instead of restoring it.',
|
|
250
|
+
],
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
type: 'title',
|
|
254
|
+
text: 'Deep Frying & Lipid Degradation Glossary',
|
|
255
|
+
level: 3,
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
type: 'glossary',
|
|
259
|
+
items: [
|
|
260
|
+
{
|
|
261
|
+
term: 'Smoke Point',
|
|
262
|
+
definition: 'The temperature at which an oil or fat begins to continuously break down and produce visible bluish smoke, releasing acrolein.',
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
term: 'Total Polar Compounds (TPC)',
|
|
266
|
+
definition: 'The global standard indicator for oil degradation, representing the total weight percentage of oxidized compounds, FFAs, and polymers.',
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
term: 'Hydrolysis',
|
|
270
|
+
definition: 'A chemical reaction in which water molecules break down triglycerides into free fatty acids and glycerol. Triggered by food moisture.',
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
term: 'Polymerization',
|
|
274
|
+
definition: 'The process in which heat-damaged oil molecules join together to form large macromolecular structures, increasing oil viscosity.',
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
term: 'Free Fatty Acids (FFA)',
|
|
278
|
+
definition: 'Carboxylic acids released from triglycerides during hydrolysis. They directly reduce the starting smoke point of the fat.',
|
|
279
|
+
},
|
|
280
|
+
],
|
|
281
|
+
},
|
|
282
|
+
],
|
|
283
|
+
bibliography,
|
|
284
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
285
|
+
};
|