@jjlmoya/utils-alcohol 1.25.0 → 1.26.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/entries.ts +7 -1
- package/src/index.ts +1 -0
- package/src/pages/[locale]/[slug].astro +7 -3
- package/src/tests/locale_completeness.test.ts +4 -9
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/alcoholClearance/bibliography.ts +6 -0
- package/src/tool/alcoholClearance/entry.ts +1 -0
- package/src/tool/alcoholClearance/i18n/de.ts +1 -12
- package/src/tool/alcoholClearance/i18n/en.ts +1 -12
- package/src/tool/alcoholClearance/i18n/es.ts +1 -12
- package/src/tool/alcoholClearance/i18n/fr.ts +1 -12
- package/src/tool/alcoholClearance/i18n/id.ts +1 -12
- package/src/tool/alcoholClearance/i18n/it.ts +1 -12
- package/src/tool/alcoholClearance/i18n/ja.ts +1 -12
- package/src/tool/alcoholClearance/i18n/ko.ts +1 -12
- package/src/tool/alcoholClearance/i18n/nl.ts +1 -12
- package/src/tool/alcoholClearance/i18n/pl.ts +1 -12
- package/src/tool/alcoholClearance/i18n/pt.ts +1 -12
- package/src/tool/alcoholClearance/i18n/ru.ts +1 -12
- package/src/tool/alcoholClearance/i18n/sv.ts +1 -12
- package/src/tool/alcoholClearance/i18n/tr.ts +1 -12
- package/src/tool/alcoholClearance/i18n/zh.ts +1 -12
- package/src/tool/beerCooler/bibliography.ts +6 -0
- package/src/tool/beerCooler/entry.ts +1 -0
- package/src/tool/beerCooler/i18n/de.ts +1 -12
- package/src/tool/beerCooler/i18n/en.ts +1 -12
- package/src/tool/beerCooler/i18n/es.ts +1 -12
- package/src/tool/beerCooler/i18n/fr.ts +1 -12
- package/src/tool/beerCooler/i18n/id.ts +1 -12
- package/src/tool/beerCooler/i18n/it.ts +1 -12
- package/src/tool/beerCooler/i18n/ja.ts +1 -12
- package/src/tool/beerCooler/i18n/ko.ts +1 -12
- package/src/tool/beerCooler/i18n/nl.ts +1 -12
- package/src/tool/beerCooler/i18n/pl.ts +1 -12
- package/src/tool/beerCooler/i18n/pt.ts +1 -12
- package/src/tool/beerCooler/i18n/ru.ts +1 -12
- package/src/tool/beerCooler/i18n/sv.ts +1 -12
- package/src/tool/beerCooler/i18n/tr.ts +1 -12
- package/src/tool/beerCooler/i18n/zh.ts +1 -12
- package/src/tool/carbonationCalculator/bibliography.ts +6 -0
- package/src/tool/carbonationCalculator/entry.ts +1 -0
- package/src/tool/carbonationCalculator/i18n/de.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/en.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/es.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/fr.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/id.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/it.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/ja.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/ko.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/nl.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/pl.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/pt.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/ru.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/sv.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/tr.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/zh.ts +1 -12
- package/src/tool/cocktailBalancer/bibliography.ts +7 -0
- package/src/tool/cocktailBalancer/entry.ts +1 -0
- package/src/tool/cocktailBalancer/i18n/de.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/en.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/es.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/fr.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/id.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/it.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/ja.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/ko.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/nl.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/pl.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/pt.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/ru.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/sv.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/tr.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/zh.ts +1 -16
- package/src/tool/fortifiedWine/bibliography.astro +14 -0
- package/src/tool/fortifiedWine/bibliography.ts +7 -0
- package/src/tool/fortifiedWine/component.astro +331 -0
- package/src/tool/fortifiedWine/entry.ts +62 -0
- package/src/tool/fortifiedWine/fortified-wine-builder.css +534 -0
- package/src/tool/fortifiedWine/i18n/de.ts +66 -0
- package/src/tool/fortifiedWine/i18n/en.ts +140 -0
- package/src/tool/fortifiedWine/i18n/es.ts +140 -0
- package/src/tool/fortifiedWine/i18n/fr.ts +91 -0
- package/src/tool/fortifiedWine/i18n/id.ts +91 -0
- package/src/tool/fortifiedWine/i18n/it.ts +91 -0
- package/src/tool/fortifiedWine/i18n/ja.ts +91 -0
- package/src/tool/fortifiedWine/i18n/ko.ts +91 -0
- package/src/tool/fortifiedWine/i18n/nl.ts +91 -0
- package/src/tool/fortifiedWine/i18n/pl.ts +91 -0
- package/src/tool/fortifiedWine/i18n/pt.ts +91 -0
- package/src/tool/fortifiedWine/i18n/ru.ts +91 -0
- package/src/tool/fortifiedWine/i18n/sv.ts +91 -0
- package/src/tool/fortifiedWine/i18n/tr.ts +91 -0
- package/src/tool/fortifiedWine/i18n/zh.ts +91 -0
- package/src/tool/fortifiedWine/index.ts +8 -0
- package/src/tool/fortifiedWine/logic.ts +46 -0
- package/src/tool/fortifiedWine/seo.astro +41 -0
- package/src/tool/jelloShotLab/bibliography.astro +14 -0
- package/src/tool/jelloShotLab/bibliography.ts +8 -0
- package/src/tool/jelloShotLab/component.astro +183 -0
- package/src/tool/jelloShotLab/entry.ts +62 -0
- package/src/tool/jelloShotLab/i18n/de.ts +156 -0
- package/src/tool/jelloShotLab/i18n/en.ts +156 -0
- package/src/tool/jelloShotLab/i18n/es.ts +156 -0
- package/src/tool/jelloShotLab/i18n/fr.ts +156 -0
- package/src/tool/jelloShotLab/i18n/id.ts +156 -0
- package/src/tool/jelloShotLab/i18n/it.ts +156 -0
- package/src/tool/jelloShotLab/i18n/ja.ts +156 -0
- package/src/tool/jelloShotLab/i18n/ko.ts +156 -0
- package/src/tool/jelloShotLab/i18n/nl.ts +156 -0
- package/src/tool/jelloShotLab/i18n/pl.ts +156 -0
- package/src/tool/jelloShotLab/i18n/pt.ts +156 -0
- package/src/tool/jelloShotLab/i18n/ru.ts +156 -0
- package/src/tool/jelloShotLab/i18n/sv.ts +156 -0
- package/src/tool/jelloShotLab/i18n/tr.ts +156 -0
- package/src/tool/jelloShotLab/i18n/zh.ts +156 -0
- package/src/tool/jelloShotLab/index.ts +11 -0
- package/src/tool/jelloShotLab/jello-shot-lab.css +229 -0
- package/src/tool/jelloShotLab/logic.ts +29 -0
- package/src/tool/jelloShotLab/seo.astro +53 -0
- package/src/tool/partyKeg/bibliography.ts +6 -0
- package/src/tool/partyKeg/entry.ts +1 -0
- package/src/tool/partyKeg/i18n/de.ts +1 -12
- package/src/tool/partyKeg/i18n/en.ts +1 -12
- package/src/tool/partyKeg/i18n/es.ts +1 -12
- package/src/tool/partyKeg/i18n/fr.ts +1 -12
- package/src/tool/partyKeg/i18n/id.ts +1 -12
- package/src/tool/partyKeg/i18n/it.ts +1 -12
- package/src/tool/partyKeg/i18n/ja.ts +1 -12
- package/src/tool/partyKeg/i18n/ko.ts +1 -12
- package/src/tool/partyKeg/i18n/nl.ts +1 -12
- package/src/tool/partyKeg/i18n/pl.ts +1 -12
- package/src/tool/partyKeg/i18n/pt.ts +1 -12
- package/src/tool/partyKeg/i18n/ru.ts +1 -12
- package/src/tool/partyKeg/i18n/sv.ts +1 -12
- package/src/tool/partyKeg/i18n/tr.ts +1 -12
- package/src/tool/partyKeg/i18n/zh.ts +1 -12
- package/src/tools.ts +5 -0
- package/src/types.ts +1 -1
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import type { FortifiedWineBuilderUI, FortifiedWineBuilderLocaleContent } from '../index';
|
|
4
|
+
|
|
5
|
+
const slug = 'fortified-wine-builder';
|
|
6
|
+
const title = '酒精強化ワイン&ベルモット ビルダー:ピアソン法計算ツール';
|
|
7
|
+
const description = '目標アルコール度数に達するために、ワインに加えるべき蒸留酒の正確な量を計算します。ピアソン法で完璧なベルモット、ポート、シェリーを作りましょう。';
|
|
8
|
+
|
|
9
|
+
const ui: FortifiedWineBuilderUI = {
|
|
10
|
+
intentionTitle: '何を作りますか?',
|
|
11
|
+
intentionVermouth: 'ベルモット',
|
|
12
|
+
intentionPort: 'ポートワイン',
|
|
13
|
+
intentionSherry: 'シェリー',
|
|
14
|
+
intentionCustom: 'カスタム',
|
|
15
|
+
modeALabel: '手持ちのワインから',
|
|
16
|
+
modeBLabel: '目標最終容量',
|
|
17
|
+
wineSection: 'ベースワイン',
|
|
18
|
+
wineVolumeLabel: 'ワインの量(L)',
|
|
19
|
+
wineAbvLabel: 'ワインのアルコール度数(%)',
|
|
20
|
+
spiritSection: '強化スピリッツ',
|
|
21
|
+
spiritAbvLabel: 'スピリッツのアルコール度数(%)',
|
|
22
|
+
brandyPreset: 'ブランデー(38°)',
|
|
23
|
+
neutralPreset: 'ニュートラル(96°)',
|
|
24
|
+
aguardientePreset: 'アグアルディエンテ(42°)',
|
|
25
|
+
targetAbvLabel: '目標アルコール度数(%)',
|
|
26
|
+
targetVolumeLabel: '目標合計容量(L)',
|
|
27
|
+
resultsTitle: 'あなたのレシピ',
|
|
28
|
+
addLabel: '追加',
|
|
29
|
+
finalVolumeLabel: '最終容量',
|
|
30
|
+
bottlesSection: '必要なボトル数',
|
|
31
|
+
copyBtn: 'レシピをコピー',
|
|
32
|
+
copiedBtn: 'コピー済み!',
|
|
33
|
+
pearsonTitle: 'ピアソン法',
|
|
34
|
+
wineCornerLabel: 'ワイン',
|
|
35
|
+
spiritCornerLabel: 'スピリッツ',
|
|
36
|
+
emptyState: 'ピアソン法を表示するには値を入力してください',
|
|
37
|
+
errorAbv: 'スピリッツのアルコール度数は目標より高く、目標はワインのアルコール度数より高くなければなりません。',
|
|
38
|
+
errorMode: '計算するには有効な容量を入力してください。',
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const faqTitle = 'よくある質問';
|
|
42
|
+
|
|
43
|
+
const faq: FortifiedWineBuilderLocaleContent['faq'] = [
|
|
44
|
+
{
|
|
45
|
+
question: 'ピアソン法とは何ですか?',
|
|
46
|
+
answer: 'ピアソン法は、ワイン醸造においてブレンド比率を計算するために使われるシンプルな図解法です。目標アルコール度数を四角形の中央に置き、ワインのアルコール度数を左上、スピリッツのアルコール度数を左下に置きます。対角線の差が、それぞれの液体に必要な比率を示します。',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: 'ベルモットの一般的なアルコール度数はどれくらいですか?',
|
|
50
|
+
answer: '伝統的なベルモットのアルコール度数は15%〜18%です。ドライ(フランス式)ベルモットは通常低め(15〜16%)で、スイート(イタリア式)ベルモットは16〜18%になることが多いです。ロゼベルモットはその中間に位置します。',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
question: 'ベルモットにはどのベースワインを使えばいいですか?',
|
|
54
|
+
answer: '伝統的には、アルコール度数10〜12%のニュートラルで辛口の白ワインが最適です。ワインは骨格を提供しますが、ハーブや植物素材で香り付けするため、高価なワインは必要ありません——クリーンで酸味のあるベースが理想的です。',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: 'ブランデーの代わりにニュートラルアルコールを使えますか?',
|
|
58
|
+
answer: 'はい。ニュートラルアルコール(96%)は最大限のコントロールとクリーンな風味プロファイルを提供します。ブランデーは独自の個性(樫、ドライフルーツ、バニラ)をもたらしますが、スタイルによって望ましい場合も望ましくない場合もあります。ポートワインは伝統的にグレープブランデーを使用し、一部のベルモットはニュートラルスピリッツを使用します。',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
question: '強化はワインをどのように保存しますか?',
|
|
62
|
+
answer: 'ワインのアルコール度数が約15〜16%を超えると、酵母による発酵が抑制されます——酵母は高アルコール環境では生きられません。これが強化ワインが通常のワインよりもはるかに長い保存期間を持つ理由です。アルコールは酵母と細菌の両方に対する天然防腐剤として機能します。',
|
|
63
|
+
},
|
|
64
|
+
];
|
|
65
|
+
|
|
66
|
+
const howTo: FortifiedWineBuilderLocaleContent['howTo'] = [
|
|
67
|
+
{ name: 'スタイルを選択', text: 'ベルモット、ポートワイン、シェリー、またはカスタムを選択して、推奨目標アルコール度数範囲を自動入力します。' },
|
|
68
|
+
{ name: 'ワインデータを入力', text: 'ベースワインの容量(またはモードBでの目標最終容量)と現在のアルコール度数を入力します。' },
|
|
69
|
+
{ name: 'スピリッツを設定', text: 'スピリッツのプリセットを選択するか、カスタムのアルコール度数を入力します。ピアソン法はリアルタイムで更新されます。' },
|
|
70
|
+
{ name: 'レシピを確認', text: '計算ツールは追加すべきスピリッツの正確なミリリットル数と最終容量を表示します。' },
|
|
71
|
+
];
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
const seo: FortifiedWineBuilderLocaleContent['seo'] = [
|
|
75
|
+
{ type: 'title', text: 'ピアソン法:古代の数学、完璧なワイン', level: 2 },
|
|
76
|
+
{ type: 'paragraph', html: '<strong>ピアソン法</strong>は、ワイン醸造数学における最も古くて優雅なツールの一つです。19世紀に開発され、プロのワイン醸造家からアマチュアまで、引き算だけでブレンド比率を計算することができます。私たちのツールはこの視覚的な方法をデジタル化し、リアルタイムのフィードバックを追加することで、計算に費やす時間を減らし、醸造により多くの時間を使えるようにします。' },
|
|
77
|
+
{ type: 'stats', items: [{ label: 'ベルモット', value: '15〜18% vol.', icon: 'mdi:glass-cocktail' }, { label: 'ポートワイン', value: '18〜20% vol.', icon: 'mdi:bottle-wine' }, { label: 'シェリー', value: '15〜17% vol.', icon: 'mdi:cup-water' }], columns: 3 },
|
|
78
|
+
{ type: 'card', title: 'なぜ18%で強化するのか?', icon: 'mdi:shield-check', html: '約15%を超えると、<em>Saccharomyces cerevisiae</em>(主要なワイン酵母)が阻害されます。18%になると発酵が完全に止まります。これがポートワインが残留糖分を保持する理由です:スピリッツは発酵の途中で加えられ、全ての糖が消費される前に酵母を死滅させます。' },
|
|
79
|
+
{ type: 'tip', title: 'プロのヒント:20°Cで測定', html: 'アルコール密度は温度によって変化します。公式のアルコール度数測定値は20°Cで校正されています。スピリッツまたはワインが大幅に暖かいまたは冷たい場合は補正係数を適用してください:20°C以下では1°Cごとに約+0.04%、20°C以上では−0.04%。' },
|
|
80
|
+
{ type: 'title', text: 'クラフトベルモットのルネッサンス', level: 2 },
|
|
81
|
+
{ type: 'paragraph', html: '南欧ではクラフトベルモットの復興が起きています。バルセロナ、バレンシア、サン・セバスティアンは<em>la hora del vermut</em>を文化的な制度として取り戻し、スペイン、イタリア、フランスの小規模生産者が素晴らしい製品を瓶詰めしています。これにより、自分たちの野望に見合った技術ツールを求める新世代のホームプロデューサーが生まれています。' },
|
|
82
|
+
{ type: 'summary', title: 'このツールは誰のためのものですか?', items: ['ホームワインメーカー:推測ではなく精度でハーベストを強化してください。', 'クラフトベルモットプロデューサー:フルバッチにスケールする前に新しいABV目標のプロトタイプを作成してください。', 'スピリッツ教育者:ワークショップでピアソン法を視覚的にデモンストレーションしてください。'] },
|
|
83
|
+
];
|
|
84
|
+
|
|
85
|
+
const schemas: FortifiedWineBuilderLocaleContent['schemas'] = [
|
|
86
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })) } as WithContext<FAQPage>,
|
|
87
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: title, description, step: howTo.map((step, i) => ({ '@type': 'HowToStep', position: i + 1, name: step.name, text: step.text })) } as WithContext<HowTo>,
|
|
88
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: title, description, applicationCategory: 'UtilityApplication', operatingSystem: 'Web', offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' } } as WithContext<SoftwareApplication>,
|
|
89
|
+
];
|
|
90
|
+
|
|
91
|
+
export const content: FortifiedWineBuilderLocaleContent = { slug, title, description, ui, seo, faqTitle, faq, bibliography, howTo, schemas };
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import type { FortifiedWineBuilderUI, FortifiedWineBuilderLocaleContent } from '../index';
|
|
4
|
+
|
|
5
|
+
const slug = 'fortified-wine-builder';
|
|
6
|
+
const title = '강화 와인 & 베르무트 빌더: 피어슨 스퀘어 계산기';
|
|
7
|
+
const description = '목표 알코올 도수에 도달하기 위해 와인에 얼마나 많은 증류주를 첨가해야 하는지 정확히 계산하세요. 피어슨 스퀘어 방법으로 완벽한 베르무트, 포트, 셰리를 만들어 보세요.';
|
|
8
|
+
|
|
9
|
+
const ui: FortifiedWineBuilderUI = {
|
|
10
|
+
intentionTitle: '무엇을 만드시겠습니까?',
|
|
11
|
+
intentionVermouth: '베르무트',
|
|
12
|
+
intentionPort: '포트 와인',
|
|
13
|
+
intentionSherry: '셰리',
|
|
14
|
+
intentionCustom: '사용자 지정',
|
|
15
|
+
modeALabel: '보유한 와인 기준',
|
|
16
|
+
modeBLabel: '목표 최종 용량',
|
|
17
|
+
wineSection: '베이스 와인',
|
|
18
|
+
wineVolumeLabel: '와인 용량 (L)',
|
|
19
|
+
wineAbvLabel: '와인 알코올 도수 (%)',
|
|
20
|
+
spiritSection: '강화 증류주',
|
|
21
|
+
spiritAbvLabel: '증류주 알코올 도수 (%)',
|
|
22
|
+
brandyPreset: '브랜디 (38°)',
|
|
23
|
+
neutralPreset: '중성 (96°)',
|
|
24
|
+
aguardientePreset: '아과르디엔테 (42°)',
|
|
25
|
+
targetAbvLabel: '목표 알코올 도수 (%)',
|
|
26
|
+
targetVolumeLabel: '목표 총 용량 (L)',
|
|
27
|
+
resultsTitle: '나의 레시피',
|
|
28
|
+
addLabel: '추가',
|
|
29
|
+
finalVolumeLabel: '최종 용량',
|
|
30
|
+
bottlesSection: '필요한 병 수',
|
|
31
|
+
copyBtn: '레시피 복사',
|
|
32
|
+
copiedBtn: '복사됨!',
|
|
33
|
+
pearsonTitle: '피어슨 스퀘어',
|
|
34
|
+
wineCornerLabel: '와인',
|
|
35
|
+
spiritCornerLabel: '증류주',
|
|
36
|
+
emptyState: '피어슨 스퀘어를 보려면 값을 입력하세요',
|
|
37
|
+
errorAbv: '증류주 알코올 도수는 목표보다 높아야 하고, 목표는 와인 알코올 도수보다 높아야 합니다.',
|
|
38
|
+
errorMode: '계산하려면 유효한 용량을 입력하세요.',
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const faqTitle = '자주 묻는 질문';
|
|
42
|
+
|
|
43
|
+
const faq: FortifiedWineBuilderLocaleContent['faq'] = [
|
|
44
|
+
{
|
|
45
|
+
question: '피어슨 스퀘어 방법이란 무엇인가요?',
|
|
46
|
+
answer: '피어슨 스퀘어는 와인 제조에서 블렌딩 비율을 계산하는 데 사용되는 간단한 그래픽 방법입니다. 목표 알코올 도수를 정사각형 중앙에 배치하고, 와인 알코올 도수를 왼쪽 위, 증류주 알코올 도수를 왼쪽 아래에 배치합니다. 대각선 차이가 필요한 각 액체의 비례량을 제공합니다.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: '베르무트의 일반적인 알코올 도수는 얼마인가요?',
|
|
50
|
+
answer: '전통적인 베르무트의 알코올 도수는 15%에서 18% 사이입니다. 드라이(프랑스 스타일) 베르무트는 일반적으로 낮은 편(15~16%)이고, 스위트(이탈리아 스타일) 베르무트는 종종 16~18%입니다. 로제 베르무트는 그 중간에 위치합니다.',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
question: '베르무트에 어떤 베이스 와인을 사용해야 하나요?',
|
|
54
|
+
answer: '전통적으로 알코올 도수 10~12%의 중성적이고 드라이한 화이트 와인이 가장 적합합니다. 와인은 뼈대를 제공하지만, 허브와 식물성 재료로 향을 낼 것이므로 비싼 와인은 필요하지 않습니다 — 깨끗하고 산미 있는 베이스가 이상적입니다.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: '브랜디 대신 중성 알코올을 사용할 수 있나요?',
|
|
58
|
+
answer: '네. 중성 알코올(96%)은 최대한의 제어와 더 깨끗한 풍미 프로필을 제공합니다. 브랜디는 자체적인 특성(오크, 건과일, 바닐라)을 더하는데, 이는 스타일에 따라 바람직할 수도 그렇지 않을 수도 있습니다. 포트 와인은 전통적으로 포도 브랜디를 사용하고, 일부 베르무트는 중성 증류주를 사용합니다.',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
question: '강화는 어떻게 와인을 보존하나요?',
|
|
62
|
+
answer: '와인의 알코올 도수가 약 15~16%를 초과하면 효모에 의한 발효가 억제됩니다 — 효모는 고알코올 환경에서 생존할 수 없습니다. 이것이 강화 와인이 일반 와인보다 훨씬 긴 유통기한을 갖는 이유입니다. 알코올은 효모와 세균 모두에 대한 천연 방부제 역할을 합니다.',
|
|
63
|
+
},
|
|
64
|
+
];
|
|
65
|
+
|
|
66
|
+
const howTo: FortifiedWineBuilderLocaleContent['howTo'] = [
|
|
67
|
+
{ name: '스타일 선택', text: '베르무트, 포트 와인, 셰리 또는 사용자 지정을 선택하여 권장 목표 알코올 도수 범위를 자동으로 채웁니다.' },
|
|
68
|
+
{ name: '와인 데이터 입력', text: '베이스 와인의 용량(또는 모드 B의 목표 최종 용량)과 현재 알코올 도수를 입력합니다.' },
|
|
69
|
+
{ name: '증류주 설정', text: '증류주 프리셋을 선택하거나 사용자 지정 알코올 도수를 입력합니다. 피어슨 스퀘어가 실시간으로 업데이트됩니다.' },
|
|
70
|
+
{ name: '레시피 확인', text: '계산기는 추가할 증류주의 정확한 밀리리터 수와 최종 용량을 표시합니다.' },
|
|
71
|
+
];
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
const seo: FortifiedWineBuilderLocaleContent['seo'] = [
|
|
75
|
+
{ type: 'title', text: '피어슨 스퀘어: 고대의 수학, 완벽한 와인', level: 2 },
|
|
76
|
+
{ type: 'paragraph', html: '<strong>피어슨 스퀘어</strong>는 와인 양조 수학에서 가장 오래되고 우아한 도구 중 하나입니다. 19세기에 개발된 이 방법은 전문가든 아마추어든 모든 와인 생산자가 빼기만으로 블렌딩 비율을 계산할 수 있게 해줍니다. 저희 도구는 이 시각적 방법을 디지털화하고 실시간 피드백을 추가하여 계산에 덜 소비하고 제작에 더 많은 시간을 쓸 수 있게 합니다.' },
|
|
77
|
+
{ type: 'stats', items: [{ label: '베르무트', value: '15~18% vol.', icon: 'mdi:glass-cocktail' }, { label: '포트 와인', value: '18~20% vol.', icon: 'mdi:bottle-wine' }, { label: '셰리', value: '15~17% vol.', icon: 'mdi:cup-water' }], columns: 3 },
|
|
78
|
+
{ type: 'card', title: '왜 18%에서 강화하나요?', icon: 'mdi:shield-check', html: '약 15%를 초과하면 <em>Saccharomyces cerevisiae</em>(주요 와인 효모)가 억제됩니다. 18%가 되면 발효가 완전히 중단됩니다. 이것이 포트 와인이 잔류 당분을 보유하는 이유입니다: 발효 중간에 증류주를 추가하여 모든 당분이 소비되기 전에 효모를 사멸시킵니다.' },
|
|
79
|
+
{ type: 'tip', title: '프로 팁: 20°C에서 측정', html: '알코올 밀도는 온도에 따라 변합니다. 공식 알코올 도수 측정값은 20°C에서 보정됩니다. 증류주나 와인이 크게 더 따뜻하거나 차가운 경우 보정 계수를 적용하세요: 20°C 이하에서는 °C당 약 +0.04%, 이상에서는 −0.04%.' },
|
|
80
|
+
{ type: 'title', text: '크래프트 베르무트의 르네상스', level: 2 },
|
|
81
|
+
{ type: 'paragraph', html: '남부 유럽은 크래프트 베르무트 르네상스를 경험하고 있습니다. 바르셀로나, 발렌시아, 산 세바스티안은 <em>la hora del vermut</em>를 문화적 제도로 되찾았고, 스페인, 이탈리아, 프랑스의 소규모 생산자들이 놀라운 제품을 병입하고 있습니다. 이로 인해 자신의 야망에 걸맞은 기술 도구를 원하는 새로운 세대의 홈 생산자가 탄생했습니다.' },
|
|
82
|
+
{ type: 'summary', title: '이 도구는 누구를 위한 것인가요?', items: ['홈 와인 메이커: 추측 대신 정밀함으로 수확물을 강화하세요.', '크래프트 베르무트 생산자: 전체 배치로 확장하기 전에 새로운 ABV 목표를 프로토타입하세요.', '증류주 교육자: 워크숍에서 피어슨 스퀘어 방법을 시각적으로 시연하세요.'] },
|
|
83
|
+
];
|
|
84
|
+
|
|
85
|
+
const schemas: FortifiedWineBuilderLocaleContent['schemas'] = [
|
|
86
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })) } as WithContext<FAQPage>,
|
|
87
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: title, description, step: howTo.map((step, i) => ({ '@type': 'HowToStep', position: i + 1, name: step.name, text: step.text })) } as WithContext<HowTo>,
|
|
88
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: title, description, applicationCategory: 'UtilityApplication', operatingSystem: 'Web', offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' } } as WithContext<SoftwareApplication>,
|
|
89
|
+
];
|
|
90
|
+
|
|
91
|
+
export const content: FortifiedWineBuilderLocaleContent = { slug, title, description, ui, seo, faqTitle, faq, bibliography, howTo, schemas };
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import type { FortifiedWineBuilderUI, FortifiedWineBuilderLocaleContent } from '../index';
|
|
4
|
+
|
|
5
|
+
const slug = 'versterkte-wijn-bouwer';
|
|
6
|
+
const title = 'Versterkte Wijn & Vermout Bouwer: Pearson Vierkant Calculator';
|
|
7
|
+
const description = 'Bereken precies hoeveel gedestilleerd je aan je wijn moet toevoegen om het gewenste alcoholpercentage te bereiken. Maak perfecte vermout, port en sherry met de Pearson Vierkant methode.';
|
|
8
|
+
|
|
9
|
+
const ui: FortifiedWineBuilderUI = {
|
|
10
|
+
intentionTitle: 'Wat maak je?',
|
|
11
|
+
intentionVermouth: 'Vermout',
|
|
12
|
+
intentionPort: 'Port',
|
|
13
|
+
intentionSherry: 'Sherry',
|
|
14
|
+
intentionCustom: 'Aangepast',
|
|
15
|
+
modeALabel: 'Van wijn die ik heb',
|
|
16
|
+
modeBLabel: 'Gewenst eindvolume',
|
|
17
|
+
wineSection: 'Basiswijn',
|
|
18
|
+
wineVolumeLabel: 'Wijnvolume (L)',
|
|
19
|
+
wineAbvLabel: 'Alcoholpercentage wijn (%)',
|
|
20
|
+
spiritSection: 'Versterkend Gedestilleerd',
|
|
21
|
+
spiritAbvLabel: 'Alcoholpercentage gedestilleerd (%)',
|
|
22
|
+
brandyPreset: 'Brandy (38°)',
|
|
23
|
+
neutralPreset: 'Neutraal (96°)',
|
|
24
|
+
aguardientePreset: 'Aguardiente (42°)',
|
|
25
|
+
targetAbvLabel: 'Doel alcoholpercentage (%)',
|
|
26
|
+
targetVolumeLabel: 'Totaal doelvolume (L)',
|
|
27
|
+
resultsTitle: 'Jouw Recept',
|
|
28
|
+
addLabel: 'Toevoegen',
|
|
29
|
+
finalVolumeLabel: 'Eindvolume',
|
|
30
|
+
bottlesSection: 'Benodigde flessen',
|
|
31
|
+
copyBtn: 'Recept Kopiëren',
|
|
32
|
+
copiedBtn: 'Gekopieerd!',
|
|
33
|
+
pearsonTitle: 'Pearson Vierkant',
|
|
34
|
+
wineCornerLabel: 'Wijn',
|
|
35
|
+
spiritCornerLabel: 'Gedestilleerd',
|
|
36
|
+
emptyState: 'Voer je waarden in om het Pearson Vierkant te zien',
|
|
37
|
+
errorAbv: 'Het alcoholpercentage van het gedestilleerde moet hoger zijn dan het doelpercentage, en het doel moet hoger zijn dan het wijnalcohol.',
|
|
38
|
+
errorMode: 'Voer een geldig volume in om te berekenen.',
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const faqTitle = 'Veelgestelde Vragen';
|
|
42
|
+
|
|
43
|
+
const faq: FortifiedWineBuilderLocaleContent['faq'] = [
|
|
44
|
+
{
|
|
45
|
+
question: 'Wat is de Pearson Vierkant methode?',
|
|
46
|
+
answer: 'Het Pearson Vierkant is een eenvoudige grafische methode in de wijnmakerij om mengverhoudingen te berekenen. Je plaatst het doel-alcoholpercentage in het midden van het vierkant, het wijnalcohol linksboven en het gedestilleerd alcohol linksonder. De diagonale verschillen geven de proportionele hoeveelheden van elke vloeistof.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: 'Wat is het typische alcoholpercentage van vermout?',
|
|
50
|
+
answer: 'Traditionele vermout heeft een alcoholpercentage van 15 % tot 18 %. Droge (Franse stijl) vermout zit doorgaans aan de lagere kant (15–16 %), terwijl zoete (Italiaanse stijl) vermout vaak 16–18 % bereikt. Rosé vermout zit er tussenin.',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
question: 'Welke basiswijn moet ik gebruiken voor vermout?',
|
|
54
|
+
answer: 'Traditioneel werkt een neutrale, droge witte wijn van 10–12 % alcohol het beste. De wijn biedt de basis, maar omdat hij gearomatiseerd wordt met kruiden en botanicals, heb je geen dure wijn nodig — een schone, zure basis is ideaal.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: 'Kan ik neutrale alcohol gebruiken in plaats van brandy?',
|
|
58
|
+
answer: 'Ja. Neutrale alcohol (96 % vol.) geeft maximale controle en een zuiverder smaakprofiel. Brandy voegt zijn eigen karakter toe (eik, gedroogd fruit, vanille), wat gewenst of ongewenst kan zijn afhankelijk van de stijl. Port gebruikt traditioneel druivenbrandy, terwijl sommige vermouts neutrale alcohol gebruiken.',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
question: 'Hoe conserveert versterking de wijn?',
|
|
62
|
+
answer: 'Wanneer het alcoholgehalte van wijn de circa 15–16 % overschrijdt, wordt fermentatie door gist geremd — gist kan niet overleven in omgevingen met een hoog alcoholgehalte. Daarom hebben versterkte wijnen een veel langere houdbaarheid dan gewone wijn. De alcohol werkt als natuurlijk conserveermiddel tegen bederf door gist en bacteriën.',
|
|
63
|
+
},
|
|
64
|
+
];
|
|
65
|
+
|
|
66
|
+
const howTo: FortifiedWineBuilderLocaleContent['howTo'] = [
|
|
67
|
+
{ name: 'Stijl kiezen', text: 'Selecteer Vermout, Port, Sherry of Aangepast om het aanbevolen doel-alcoholpercentage automatisch in te vullen.' },
|
|
68
|
+
{ name: 'Wijngegevens invoeren', text: 'Voer het volume van je basiswijn in (of het gewenste eindvolume in Modus B) en het huidige alcoholpercentage.' },
|
|
69
|
+
{ name: 'Gedestilleerd instellen', text: 'Kies een gedestilleerd preset of voer een aangepast alcoholpercentage in. Het Pearson Vierkant wordt in realtime bijgewerkt.' },
|
|
70
|
+
{ name: 'Recept aflezen', text: 'De calculator toont precies hoeveel milliliter gedestilleerd je moet toevoegen en het eindvolume.' },
|
|
71
|
+
];
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
const seo: FortifiedWineBuilderLocaleContent['seo'] = [
|
|
75
|
+
{ type: 'title', text: 'Het Pearson Vierkant: Eeuwenoude wiskunde, perfecte wijn', level: 2 },
|
|
76
|
+
{ type: 'paragraph', html: 'Het <strong>Pearson Vierkant</strong> is een van de oudste en meest elegante hulpmiddelen in de wijnwiskunde. Ontwikkeld in de 19e eeuw stelt het elke wijnmaker — professioneel of amateur — in staat mengverhoudingen te berekenen met niets meer dan aftrekken. Ons hulpmiddel digitaliseert deze visuele methode en voegt realtime feedback toe, zodat je minder tijd besteedt aan berekenen en meer aan het maken.' },
|
|
77
|
+
{ type: 'stats', items: [{ label: 'Vermout', value: '15–18 % vol.', icon: 'mdi:glass-cocktail' }, { label: 'Port', value: '18–20 % vol.', icon: 'mdi:bottle-wine' }, { label: 'Sherry', value: '15–17 % vol.', icon: 'mdi:cup-water' }], columns: 3 },
|
|
78
|
+
{ type: 'card', title: 'Waarom versterken op 18 %?', icon: 'mdi:shield-check', html: 'Boven circa 15 % vol. wordt <em>Saccharomyces cerevisiae</em> — de primaire wijngist — geremd. Tegen de tijd dat je 18 % bereikt, is de fermentatie volledig gestopt. Daarom behoudt Port restsuiker: gedestilleerd wordt halverwege de fermentatie toegevoegd, waardoor de gist wordt gedood voordat alle suiker is omgezet.' },
|
|
79
|
+
{ type: 'tip', title: 'Pro Tip: Meten bij 20 °C', html: 'Alcoholdichtheid verandert met temperatuur. Officiële alcoholmetingen zijn gekalibreerd op 20 °C. Als je gedestilleerde of wijn aanzienlijk warmer of kouder is, pas dan een correctiefactor toe: ongeveer +0,04 % vol. per °C onder 20 °C en −0,04 % per °C erboven.' },
|
|
80
|
+
{ type: 'title', text: 'De Ambachtelijke Vermout Renaissance', level: 2 },
|
|
81
|
+
{ type: 'paragraph', html: 'Zuid-Europa beleeft een ambachtelijke vermout renaissance. Barcelona, Valencia en San Sebastián hebben <em>la hora del vermut</em> heroverd als culturele instelling, en kleine producenten in Spanje, Italië en Frankrijk bottelen opmerkelijke expressies. Dit heeft een nieuwe generatie thuisproducenten gecreëerd die technische hulpmiddelen willen die passen bij hun ambities.' },
|
|
82
|
+
{ type: 'summary', title: 'Voor wie is dit hulpmiddel?', items: ['Thuiswijnmakers: Versterk je oogst met precisie in plaats van gissen.', 'Ambachtelijke vermoutproducenten: Prototype nieuwe alcoholdoelen voordat je opschaalt naar volledige batches.', 'Spirits-docenten: Demonstreer de Pearson Vierkant methode visueel in workshops.'] },
|
|
83
|
+
];
|
|
84
|
+
|
|
85
|
+
const schemas: FortifiedWineBuilderLocaleContent['schemas'] = [
|
|
86
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })) } as WithContext<FAQPage>,
|
|
87
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: title, description, step: howTo.map((step, i) => ({ '@type': 'HowToStep', position: i + 1, name: step.name, text: step.text })) } as WithContext<HowTo>,
|
|
88
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: title, description, applicationCategory: 'UtilityApplication', operatingSystem: 'Web', offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' } } as WithContext<SoftwareApplication>,
|
|
89
|
+
];
|
|
90
|
+
|
|
91
|
+
export const content: FortifiedWineBuilderLocaleContent = { slug, title, description, ui, seo, faqTitle, faq, bibliography, howTo, schemas };
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import type { FortifiedWineBuilderUI, FortifiedWineBuilderLocaleContent } from '../index';
|
|
4
|
+
|
|
5
|
+
const slug = 'kalkulator-wina-fortyfikowanego';
|
|
6
|
+
const title = 'Kalkulator Wina Fortyfikowanego i Wermutu: Metoda Kwadratu Pearsona';
|
|
7
|
+
const description = 'Oblicz dokładnie, ile alkoholu dodać do swojego wina, aby osiągnąć docelową zawartość alkoholu. Twórz doskonały wermut, porto i sherry metodą Kwadratu Pearsona.';
|
|
8
|
+
|
|
9
|
+
const ui: FortifiedWineBuilderUI = {
|
|
10
|
+
intentionTitle: 'Co tworzysz?',
|
|
11
|
+
intentionVermouth: 'Wermut',
|
|
12
|
+
intentionPort: 'Porto',
|
|
13
|
+
intentionSherry: 'Sherry',
|
|
14
|
+
intentionCustom: 'Niestandardowe',
|
|
15
|
+
modeALabel: 'Z posiadanego wina',
|
|
16
|
+
modeBLabel: 'Docelowa objętość końcowa',
|
|
17
|
+
wineSection: 'Wino Bazowe',
|
|
18
|
+
wineVolumeLabel: 'Objętość wina (L)',
|
|
19
|
+
wineAbvLabel: 'Zawartość alkoholu w winie (%)',
|
|
20
|
+
spiritSection: 'Alkohol Fortyfikujący',
|
|
21
|
+
spiritAbvLabel: 'Zawartość alkoholu w destylaci (%)',
|
|
22
|
+
brandyPreset: 'Brandy (38°)',
|
|
23
|
+
neutralPreset: 'Neutralny (96°)',
|
|
24
|
+
aguardientePreset: 'Aguardiente (42°)',
|
|
25
|
+
targetAbvLabel: 'Docelowa zawartość alkoholu (%)',
|
|
26
|
+
targetVolumeLabel: 'Docelowa całkowita objętość (L)',
|
|
27
|
+
resultsTitle: 'Twój Przepis',
|
|
28
|
+
addLabel: 'Dodaj',
|
|
29
|
+
finalVolumeLabel: 'Objętość końcowa',
|
|
30
|
+
bottlesSection: 'Potrzebne butelki',
|
|
31
|
+
copyBtn: 'Kopiuj Przepis',
|
|
32
|
+
copiedBtn: 'Skopiowano!',
|
|
33
|
+
pearsonTitle: 'Kwadrat Pearsona',
|
|
34
|
+
wineCornerLabel: 'Wino',
|
|
35
|
+
spiritCornerLabel: 'Destylatka',
|
|
36
|
+
emptyState: 'Wprowadź wartości, aby zobaczyć Kwadrat Pearsona',
|
|
37
|
+
errorAbv: 'Zawartość alkoholu w destylacie musi być wyższa niż wartość docelowa, a wartość docelowa musi być wyższa niż zawartość alkoholu w winie.',
|
|
38
|
+
errorMode: 'Wprowadź prawidłową objętość, aby obliczyć.',
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const faqTitle = 'Często Zadawane Pytania';
|
|
42
|
+
|
|
43
|
+
const faq: FortifiedWineBuilderLocaleContent['faq'] = [
|
|
44
|
+
{
|
|
45
|
+
question: 'Czym jest metoda Kwadratu Pearsona?',
|
|
46
|
+
answer: 'Kwadrat Pearsona to prosta metoda graficzna stosowana w winiarstwie do obliczania proporcji mieszania. Docelową zawartość alkoholu umieszcza się w centrum kwadratu, zawartość alkoholu w winie w lewym górnym rogu, a zawartość alkoholu w destylacie w lewym dolnym rogu. Różnice po przekątnej podają proporcjonalne ilości każdego płynu.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: 'Jaka jest typowa zawartość alkoholu w wermucie?',
|
|
50
|
+
answer: 'Tradycyjny wermut ma zawartość alkoholu od 15 % do 18 %. Wytrawny wermut (styl francuski) zazwyczaj mieści się w dolnym zakresie (15–16 %), natomiast słodki wermut (styl włoski) często osiąga 16–18 %. Wermut różowy plasuje się pomiędzy nimi.',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
question: 'Jakiego wina bazowego powinienem użyć do wermutu?',
|
|
54
|
+
answer: 'Tradycyjnie najlepiej sprawdza się neutralne, wytrawne białe wino o zawartości alkoholu 10–12 %. Wino stanowi podstawę, ale ponieważ zostanie zaramatyzowane ziołami i botanicals, nie potrzebujesz drogiego wina — idealna jest czysta, kwaśna baza.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: 'Czy mogę użyć neutralnego alkoholu zamiast brandy?',
|
|
58
|
+
answer: 'Tak. Neutralny alkohol (96 % obj.) daje maksymalną kontrolę i czystszy profil smakowy. Brandy wnosi własny charakter (dąb, suszone owoce, wanilia), który może być pożądany lub niepożądany w zależności od stylu. Porto tradycyjnie używa winogronowego brandy, podczas gdy niektóre wermuty używają neutralnego alkoholu.',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
question: 'Jak fortyfikacja konserwuje wino?',
|
|
62
|
+
answer: 'Gdy zawartość alkoholu w winie przekracza około 15–16 %, fermentacja przez drożdże zostaje zahamowana — drożdże nie przeżywają w środowiskach o wysokiej zawartości alkoholu. Dlatego wina fortyfikowane mają znacznie dłuższy okres przydatności do spożycia niż zwykłe wino. Alkohol działa jako naturalny środek konserwujący zarówno przeciwko drożdżom, jak i bakteriom.',
|
|
63
|
+
},
|
|
64
|
+
];
|
|
65
|
+
|
|
66
|
+
const howTo: FortifiedWineBuilderLocaleContent['howTo'] = [
|
|
67
|
+
{ name: 'Wybierz styl', text: 'Wybierz Wermut, Porto, Sherry lub Niestandardowe, aby automatycznie wypełnić zalecaną docelową zawartość alkoholu.' },
|
|
68
|
+
{ name: 'Wprowadź dane wina', text: 'Podaj objętość wina bazowego (lub docelową objętość końcową w trybie B) i jego aktualną zawartość alkoholu.' },
|
|
69
|
+
{ name: 'Ustaw destylatę', text: 'Wybierz preset destylaty lub wprowadź niestandardową zawartość alkoholu. Kwadrat Pearsona aktualizuje się w czasie rzeczywistym.' },
|
|
70
|
+
{ name: 'Odczytaj przepis', text: 'Kalkulator pokazuje dokładnie, ile mililitrów destylaty dodać i jaka będzie objętość końcowa.' },
|
|
71
|
+
];
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
const seo: FortifiedWineBuilderLocaleContent['seo'] = [
|
|
75
|
+
{ type: 'title', text: 'Kwadrat Pearsona: Starożytna matematyka, doskonałe wino', level: 2 },
|
|
76
|
+
{ type: 'paragraph', html: '<strong>Kwadrat Pearsona</strong> to jedno z najstarszych i najbardziej eleganckich narzędzi matematyki winiarskiej. Opracowany w XIX wieku, pozwala każdemu winiarowi — profesjonalnemu lub amatorowi — obliczać proporcje mieszania za pomocą samego odejmowania. Nasze narzędzie digitalizuje tę wizualną metodę i dodaje informacje zwrotne w czasie rzeczywistym, dzięki czemu spędzasz mniej czasu na obliczeniach, a więcej na tworzeniu.' },
|
|
77
|
+
{ type: 'stats', items: [{ label: 'Wermut', value: '15–18 % obj.', icon: 'mdi:glass-cocktail' }, { label: 'Porto', value: '18–20 % obj.', icon: 'mdi:bottle-wine' }, { label: 'Sherry', value: '15–17 % obj.', icon: 'mdi:cup-water' }], columns: 3 },
|
|
78
|
+
{ type: 'card', title: 'Dlaczego fortyfikować do 18 %?', icon: 'mdi:shield-check', html: 'Powyżej około 15 % obj. <em>Saccharomyces cerevisiae</em> — główne drożdże winne — zostaje zahamowane. Przy 18 % fermentacja jest całkowicie zatrzymana. Dlatego porto zachowuje cukier resztkowy: alkohol jest dodawany w trakcie fermentacji, zabijając drożdże zanim cały cukier zostanie zużyty.' },
|
|
79
|
+
{ type: 'tip', title: 'Wskazówka Pro: Mierz przy 20 °C', html: 'Gęstość alkoholu zmienia się z temperaturą. Oficjalne pomiary zawartości alkoholu są skalibrowane przy 20 °C. Jeśli Twoja destylata lub wino jest znacznie cieplejsze lub chłodniejsze, zastosuj współczynnik korekcyjny: około +0,04 % obj. na °C poniżej 20 °C i −0,04 % na °C powyżej.' },
|
|
80
|
+
{ type: 'title', text: 'Renesans Rzemieślniczego Wermutu', level: 2 },
|
|
81
|
+
{ type: 'paragraph', html: 'Południowa Europa przeżywa renesans rzemieślniczego wermutu. Barcelona, Walencja i San Sebastián odzyskały <em>la hora del vermut</em> jako instytucję kulturalną, a małe wytwórnie w Hiszpanii, Włoszech i Francji butelkują niezwykłe wyroby. Stworzyło to nowe pokolenie domowych producentów, którzy chcą narzędzi technicznych odpowiadających ich ambicjom.' },
|
|
82
|
+
{ type: 'summary', title: 'Dla kogo jest to narzędzie?', items: ['Domowi winiarze: Fortyfikuj swoje zbiory z precyzją zamiast zgadywać.', 'Rzemieślnicy wermutowi: Prototypuj nowe docelowe zawartości alkoholu przed skalowaniem do pełnych partii.', 'Nauczyciele o napojach spirytusowych: Demonstruj metodę Kwadratu Pearsona wizualnie na warsztatach.'] },
|
|
83
|
+
];
|
|
84
|
+
|
|
85
|
+
const schemas: FortifiedWineBuilderLocaleContent['schemas'] = [
|
|
86
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })) } as WithContext<FAQPage>,
|
|
87
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: title, description, step: howTo.map((step, i) => ({ '@type': 'HowToStep', position: i + 1, name: step.name, text: step.text })) } as WithContext<HowTo>,
|
|
88
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: title, description, applicationCategory: 'UtilityApplication', operatingSystem: 'Web', offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' } } as WithContext<SoftwareApplication>,
|
|
89
|
+
];
|
|
90
|
+
|
|
91
|
+
export const content: FortifiedWineBuilderLocaleContent = { slug, title, description, ui, seo, faqTitle, faq, bibliography, howTo, schemas };
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import type { FortifiedWineBuilderUI, FortifiedWineBuilderLocaleContent } from '../index';
|
|
4
|
+
|
|
5
|
+
const slug = 'construtor-vinho-fortificado';
|
|
6
|
+
const title = 'Construtor de Vinho Fortificado & Vermute: Calculadora Quadrado de Pearson';
|
|
7
|
+
const description = 'Calcule exatamente quanto destilado adicionar ao seu vinho para atingir o teor alcoólico desejado. Crie vermute, porto e xerez perfeitos com o método do Quadrado de Pearson.';
|
|
8
|
+
|
|
9
|
+
const ui: FortifiedWineBuilderUI = {
|
|
10
|
+
intentionTitle: 'O que está a criar?',
|
|
11
|
+
intentionVermouth: 'Vermute',
|
|
12
|
+
intentionPort: 'Porto',
|
|
13
|
+
intentionSherry: 'Xerez',
|
|
14
|
+
intentionCustom: 'Personalizado',
|
|
15
|
+
modeALabel: 'A partir do vinho que tenho',
|
|
16
|
+
modeBLabel: 'Volume final desejado',
|
|
17
|
+
wineSection: 'Vinho Base',
|
|
18
|
+
wineVolumeLabel: 'Volume de vinho (L)',
|
|
19
|
+
wineAbvLabel: 'Teor alcoólico do vinho (%)',
|
|
20
|
+
spiritSection: 'Destilado de Fortificação',
|
|
21
|
+
spiritAbvLabel: 'Teor alcoólico do destilado (%)',
|
|
22
|
+
brandyPreset: 'Brandy (38°)',
|
|
23
|
+
neutralPreset: 'Neutro (96°)',
|
|
24
|
+
aguardientePreset: 'Aguardente (42°)',
|
|
25
|
+
targetAbvLabel: 'Teor alcoólico alvo (%)',
|
|
26
|
+
targetVolumeLabel: 'Volume total alvo (L)',
|
|
27
|
+
resultsTitle: 'A Sua Receita',
|
|
28
|
+
addLabel: 'Adicionar',
|
|
29
|
+
finalVolumeLabel: 'Volume final',
|
|
30
|
+
bottlesSection: 'Garrafas necessárias',
|
|
31
|
+
copyBtn: 'Copiar Receita',
|
|
32
|
+
copiedBtn: 'Copiado!',
|
|
33
|
+
pearsonTitle: 'Quadrado de Pearson',
|
|
34
|
+
wineCornerLabel: 'Vinho',
|
|
35
|
+
spiritCornerLabel: 'Destilado',
|
|
36
|
+
emptyState: 'Insira os seus valores para ver o Quadrado de Pearson',
|
|
37
|
+
errorAbv: 'O teor alcoólico do destilado deve ser superior ao alvo, e o alvo deve ser superior ao teor alcoólico do vinho.',
|
|
38
|
+
errorMode: 'Insira um volume válido para calcular.',
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const faqTitle = 'Perguntas Frequentes';
|
|
42
|
+
|
|
43
|
+
const faq: FortifiedWineBuilderLocaleContent['faq'] = [
|
|
44
|
+
{
|
|
45
|
+
question: 'O que é o método do Quadrado de Pearson?',
|
|
46
|
+
answer: 'O Quadrado de Pearson é um método gráfico simples usado na produção de vinho para calcular rácios de mistura. Coloca-se o teor alcoólico alvo no centro do quadrado, o teor alcoólico do vinho no canto superior esquerdo e o do destilado no canto inferior esquerdo. As diferenças diagonais fornecem as partes proporcionais de cada líquido necessárias.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: 'Qual é o teor alcoólico típico do vermute?',
|
|
50
|
+
answer: 'O vermute tradicional tem um teor alcoólico entre 15 % e 18 %. O vermute seco (estilo francês) situa-se geralmente na faixa inferior (15–16 %), enquanto o vermute doce (estilo italiano) atinge frequentemente 16–18 %. O vermute rosé encontra-se entre os dois.',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
question: 'Que vinho base devo usar para o vermute?',
|
|
54
|
+
answer: 'Tradicionalmente, um vinho branco seco e neutro entre 10–12 % de teor alcoólico funciona melhor. O vinho fornece a estrutura base, mas como será aromatizado com ervas e botânicos, não é necessário um vinho caro — uma base limpa e ácida é o ideal.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: 'Posso usar álcool neutro em vez de brandy?',
|
|
58
|
+
answer: 'Sim. O álcool neutro (96 % vol.) oferece controlo máximo e um perfil de sabor mais limpo. O brandy acrescenta o seu próprio carácter (carvalho, frutos secos, baunilha), o que pode ser desejável ou indesejável dependendo do estilo. O porto usa tradicionalmente aguardente vínica, enquanto alguns vermutes usam álcool neutro.',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
question: 'Como é que a fortificação conserva o vinho?',
|
|
62
|
+
answer: 'Quando o teor alcoólico do vinho ultrapassa aproximadamente 15–16 %, a fermentação pelas leveduras é inibida — as leveduras não conseguem sobreviver em ambientes com alto teor alcoólico. É por isso que os vinhos fortificados têm uma vida útil muito mais longa do que o vinho comum. O álcool atua como conservante natural contra a deterioração por leveduras e bactérias.',
|
|
63
|
+
},
|
|
64
|
+
];
|
|
65
|
+
|
|
66
|
+
const howTo: FortifiedWineBuilderLocaleContent['howTo'] = [
|
|
67
|
+
{ name: 'Escolher o estilo', text: 'Selecione Vermute, Porto, Xerez ou Personalizado para preencher automaticamente a faixa de teor alcoólico alvo recomendada.' },
|
|
68
|
+
{ name: 'Inserir dados do vinho', text: 'Introduza o volume do seu vinho base (ou o volume final alvo no Modo B) e o seu teor alcoólico atual.' },
|
|
69
|
+
{ name: 'Definir o destilado', text: 'Escolha um preset de destilado ou introduza um teor alcoólico personalizado. O Quadrado de Pearson atualiza-se em tempo real.' },
|
|
70
|
+
{ name: 'Ler a sua receita', text: 'A calculadora mostra exatamente quantos mililitros de destilado adicionar e o volume final.' },
|
|
71
|
+
];
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
const seo: FortifiedWineBuilderLocaleContent['seo'] = [
|
|
75
|
+
{ type: 'title', text: 'O Quadrado de Pearson: Matemática ancestral, vinho perfeito', level: 2 },
|
|
76
|
+
{ type: 'paragraph', html: 'O <strong>Quadrado de Pearson</strong> é uma das ferramentas mais antigas e elegantes da matemática vitivinícola. Desenvolvido no século XIX, permite a qualquer produtor de vinho — profissional ou amador — calcular rácios de mistura com nada mais do que subtrações. A nossa ferramenta digitaliza este método visual e adiciona feedback em tempo real, para que passe menos tempo a calcular e mais tempo a criar.' },
|
|
77
|
+
{ type: 'stats', items: [{ label: 'Vermute', value: '15–18 % vol.', icon: 'mdi:glass-cocktail' }, { label: 'Porto', value: '18–20 % vol.', icon: 'mdi:bottle-wine' }, { label: 'Xerez', value: '15–17 % vol.', icon: 'mdi:cup-water' }], columns: 3 },
|
|
78
|
+
{ type: 'card', title: 'Por que fortificar a 18 %?', icon: 'mdi:shield-check', html: 'Acima de cerca de 15 % vol., a <em>Saccharomyces cerevisiae</em> — a principal levedura do vinho — é inibida. Quando se atinge os 18 %, a fermentação é completamente interrompida. É por isso que o vinho do Porto retém açúcar residual: os destilados são adicionados a meio da fermentação, matando a levedura antes que todo o açúcar seja consumido.' },
|
|
79
|
+
{ type: 'tip', title: 'Dica Profissional: Medir a 20 °C', html: 'A densidade do álcool muda com a temperatura. As medições oficiais de teor alcoólico são calibradas a 20 °C. Se o seu destilado ou vinho estiver significativamente mais quente ou mais frio, aplique um fator de correção: aproximadamente +0,04 % vol. por °C abaixo de 20 °C e −0,04 % por °C acima.' },
|
|
80
|
+
{ type: 'title', text: 'O Renascimento do Vermute Artesanal', level: 2 },
|
|
81
|
+
{ type: 'paragraph', html: 'O sul da Europa está a viver um renascimento do vermute artesanal. Barcelona, Valência e San Sebastián recuperaram <em>la hora del vermut</em> como instituição cultural, e pequenos produtores em Espanha, Itália e França estão a engarrafar expressões notáveis. Isso criou uma nova geração de produtores caseiros que querem ferramentas técnicas à altura das suas ambições.' },
|
|
82
|
+
{ type: 'summary', title: 'Para quem é esta ferramenta?', items: ['Produtores de vinho caseiros: Fortifique a sua colheita com precisão em vez de adivinhar.', 'Produtores de vermute artesanal: Prototype novos teores alcoólicos alvo antes de escalar para lotes completos.', 'Educadores de destilados: Demonstre visualmente o método do Quadrado de Pearson em workshops.'] },
|
|
83
|
+
];
|
|
84
|
+
|
|
85
|
+
const schemas: FortifiedWineBuilderLocaleContent['schemas'] = [
|
|
86
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })) } as WithContext<FAQPage>,
|
|
87
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: title, description, step: howTo.map((step, i) => ({ '@type': 'HowToStep', position: i + 1, name: step.name, text: step.text })) } as WithContext<HowTo>,
|
|
88
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: title, description, applicationCategory: 'UtilityApplication', operatingSystem: 'Web', offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' } } as WithContext<SoftwareApplication>,
|
|
89
|
+
];
|
|
90
|
+
|
|
91
|
+
export const content: FortifiedWineBuilderLocaleContent = { slug, title, description, ui, seo, faqTitle, faq, bibliography, howTo, schemas };
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import type { FortifiedWineBuilderUI, FortifiedWineBuilderLocaleContent } from '../index';
|
|
4
|
+
|
|
5
|
+
const slug = 'kalkulyator-kreplenogo-vina';
|
|
6
|
+
const title = 'Конструктор Креплёного Вина и Вермута: Калькулятор Квадрата Пирсона';
|
|
7
|
+
const description = 'Рассчитайте точное количество крепкого алкоголя, которое нужно добавить в вино для достижения целевого содержания спирта. Создавайте идеальный вермут, портвейн и херес методом Квадрата Пирсона.';
|
|
8
|
+
|
|
9
|
+
const ui: FortifiedWineBuilderUI = {
|
|
10
|
+
intentionTitle: 'Что вы создаёте?',
|
|
11
|
+
intentionVermouth: 'Вермут',
|
|
12
|
+
intentionPort: 'Портвейн',
|
|
13
|
+
intentionSherry: 'Херес',
|
|
14
|
+
intentionCustom: 'Произвольно',
|
|
15
|
+
modeALabel: 'Из имеющегося вина',
|
|
16
|
+
modeBLabel: 'Целевой конечный объём',
|
|
17
|
+
wineSection: 'Базовое Вино',
|
|
18
|
+
wineVolumeLabel: 'Объём вина (л)',
|
|
19
|
+
wineAbvLabel: 'Крепость вина (%)',
|
|
20
|
+
spiritSection: 'Крепящий Спирт',
|
|
21
|
+
spiritAbvLabel: 'Крепость спирта (%)',
|
|
22
|
+
brandyPreset: 'Бренди (38°)',
|
|
23
|
+
neutralPreset: 'Нейтральный (96°)',
|
|
24
|
+
aguardientePreset: 'Агуардьенте (42°)',
|
|
25
|
+
targetAbvLabel: 'Целевая крепость (%)',
|
|
26
|
+
targetVolumeLabel: 'Целевой общий объём (л)',
|
|
27
|
+
resultsTitle: 'Ваш Рецепт',
|
|
28
|
+
addLabel: 'Добавить',
|
|
29
|
+
finalVolumeLabel: 'Конечный объём',
|
|
30
|
+
bottlesSection: 'Необходимые бутылки',
|
|
31
|
+
copyBtn: 'Скопировать Рецепт',
|
|
32
|
+
copiedBtn: 'Скопировано!',
|
|
33
|
+
pearsonTitle: 'Квадрат Пирсона',
|
|
34
|
+
wineCornerLabel: 'Вино',
|
|
35
|
+
spiritCornerLabel: 'Спирт',
|
|
36
|
+
emptyState: 'Введите значения, чтобы увидеть Квадрат Пирсона',
|
|
37
|
+
errorAbv: 'Крепость спирта должна быть выше целевой, а целевая — выше крепости вина.',
|
|
38
|
+
errorMode: 'Введите допустимый объём для расчёта.',
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const faqTitle = 'Часто Задаваемые Вопросы';
|
|
42
|
+
|
|
43
|
+
const faq: FortifiedWineBuilderLocaleContent['faq'] = [
|
|
44
|
+
{
|
|
45
|
+
question: 'Что такое метод Квадрата Пирсона?',
|
|
46
|
+
answer: 'Квадрат Пирсона — это простой графический метод, используемый в виноделии для расчёта соотношений купажирования. В центр квадрата помещают целевую крепость, в верхний левый угол — крепость вина, а в нижний левый — крепость спирта. Диагональные разности дают пропорциональные доли каждой жидкости.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: 'Какова типичная крепость вермута?',
|
|
50
|
+
answer: 'Традиционный вермут имеет крепость от 15 % до 18 %. Сухой вермут (французский стиль) обычно находится в нижней части диапазона (15–16 %), тогда как сладкий вермут (итальянский стиль) нередко достигает 16–18 %. Розовый вермут занимает промежуточное положение.',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
question: 'Какое базовое вино использовать для вермута?',
|
|
54
|
+
answer: 'Традиционно лучше всего подходит нейтральное сухое белое вино с крепостью 10–12 %. Вино даёт основу, но поскольку оно будет ароматизировано травами и ботаническими ингредиентами, дорогое вино не требуется — идеальна чистая, кислая база.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: 'Можно ли использовать нейтральный спирт вместо бренди?',
|
|
58
|
+
answer: 'Да. Нейтральный спирт (96 % об.) обеспечивает максимальный контроль и более чистый вкусовой профиль. Бренди добавляет собственный характер (дуб, сухофрукты, ваниль), что может быть желательным или нежелательным в зависимости от стиля. Портвейн традиционно использует виноградный бренди, тогда как некоторые вермуты — нейтральный спирт.',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
question: 'Как крепление сохраняет вино?',
|
|
62
|
+
answer: 'Когда крепость вина превышает примерно 15–16 %, ферментация дрожжами подавляется — дрожжи не выживают в среде с высоким содержанием алкоголя. Именно поэтому крепёные вина хранятся значительно дольше обычных. Алкоголь действует как натуральный консервант против порчи дрожжами и бактериями.',
|
|
63
|
+
},
|
|
64
|
+
];
|
|
65
|
+
|
|
66
|
+
const howTo: FortifiedWineBuilderLocaleContent['howTo'] = [
|
|
67
|
+
{ name: 'Выбрать стиль', text: 'Выберите Вермут, Портвейн, Херес или Произвольно, чтобы автоматически заполнить рекомендуемый диапазон целевой крепости.' },
|
|
68
|
+
{ name: 'Ввести данные о вине', text: 'Укажите объём базового вина (или целевой конечный объём в режиме Б) и его текущую крепость.' },
|
|
69
|
+
{ name: 'Задать спирт', text: 'Выберите предустановку спирта или введите произвольную крепость. Квадрат Пирсона обновляется в реальном времени.' },
|
|
70
|
+
{ name: 'Прочитать рецепт', text: 'Калькулятор показывает точное количество миллилитров спирта для добавления и конечный объём.' },
|
|
71
|
+
];
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
const seo: FortifiedWineBuilderLocaleContent['seo'] = [
|
|
75
|
+
{ type: 'title', text: 'Квадрат Пирсона: Старинная математика, идеальное вино', level: 2 },
|
|
76
|
+
{ type: 'paragraph', html: '<strong>Квадрат Пирсона</strong> — один из старейших и наиболее элегантных инструментов виноградарской математики. Разработанный в XIX веке, он позволяет любому виноделу — профессиональному или любительскому — рассчитывать пропорции купажирования с помощью простого вычитания. Наш инструмент оцифровывает этот визуальный метод и добавляет обратную связь в реальном времени, чтобы вы тратили меньше времени на вычисления и больше на творчество.' },
|
|
77
|
+
{ type: 'stats', items: [{ label: 'Вермут', value: '15–18 % об.', icon: 'mdi:glass-cocktail' }, { label: 'Портвейн', value: '18–20 % об.', icon: 'mdi:bottle-wine' }, { label: 'Херес', value: '15–17 % об.', icon: 'mdi:cup-water' }], columns: 3 },
|
|
78
|
+
{ type: 'card', title: 'Почему крепить до 18 %?', icon: 'mdi:shield-check', html: 'При крепости выше примерно 15 % <em>Saccharomyces cerevisiae</em> — основные винные дрожжи — подавляются. При 18 % брожение полностью прекращается. Поэтому портвейн сохраняет остаточный сахар: спирт добавляют в середине брожения, уничтожая дрожжи до того, как весь сахар будет переработан.' },
|
|
79
|
+
{ type: 'tip', title: 'Совет профессионала: Измерять при 20 °C', html: 'Плотность алкоголя изменяется с температурой. Официальные измерения крепости откалиброваны при 20 °C. Если ваш спирт или вино значительно теплее или холоднее, применяйте поправочный коэффициент: примерно +0,04 % об. на °C ниже 20 °C и −0,04 % на °C выше.' },
|
|
80
|
+
{ type: 'title', text: 'Ренессанс Крафтового Вермута', level: 2 },
|
|
81
|
+
{ type: 'paragraph', html: 'Южная Европа переживает ренессанс крафтового вермута. Барселона, Валенсия и Сан-Себастьян вновь утвердили <em>la hora del vermut</em> как культурный институт, а небольшие производители в Испании, Италии и Франции разливают замечательные напитки. Это породило новое поколение домашних производителей, желающих технических инструментов, соответствующих их амбициям.' },
|
|
82
|
+
{ type: 'summary', title: 'Для кого этот инструмент?', items: ['Домашние виноделы: Крепите свой урожай с точностью вместо угадывания.', 'Крафтовые производители вермута: Создавайте прототипы с новыми целевыми показателями крепости перед масштабированием.', 'Преподаватели в области крепких напитков: Наглядно демонстрируйте метод Квадрата Пирсона на мастер-классах.'] },
|
|
83
|
+
];
|
|
84
|
+
|
|
85
|
+
const schemas: FortifiedWineBuilderLocaleContent['schemas'] = [
|
|
86
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })) } as WithContext<FAQPage>,
|
|
87
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: title, description, step: howTo.map((step, i) => ({ '@type': 'HowToStep', position: i + 1, name: step.name, text: step.text })) } as WithContext<HowTo>,
|
|
88
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: title, description, applicationCategory: 'UtilityApplication', operatingSystem: 'Web', offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' } } as WithContext<SoftwareApplication>,
|
|
89
|
+
];
|
|
90
|
+
|
|
91
|
+
export const content: FortifiedWineBuilderLocaleContent = { slug, title, description, ui, seo, faqTitle, faq, bibliography, howTo, schemas };
|