@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,140 @@
|
|
|
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 = 'Fortified Wine & Vermouth Builder: Pearson Square Calculator';
|
|
7
|
+
const description = 'Calculate exactly how much spirit to add to your wine to reach your target ABV. Craft perfect vermouth, port, and sherry with the Pearson Square method.';
|
|
8
|
+
|
|
9
|
+
const ui: FortifiedWineBuilderUI = {
|
|
10
|
+
intentionTitle: 'What are you creating?',
|
|
11
|
+
intentionVermouth: 'Vermouth',
|
|
12
|
+
intentionPort: 'Port',
|
|
13
|
+
intentionSherry: 'Sherry',
|
|
14
|
+
intentionCustom: 'Custom',
|
|
15
|
+
modeALabel: 'From wine I have',
|
|
16
|
+
modeBLabel: 'Target final volume',
|
|
17
|
+
wineSection: 'Base Wine',
|
|
18
|
+
wineVolumeLabel: 'Wine volume (L)',
|
|
19
|
+
wineAbvLabel: 'Wine ABV (%)',
|
|
20
|
+
spiritSection: 'Fortifying Spirit',
|
|
21
|
+
spiritAbvLabel: 'Spirit ABV (%)',
|
|
22
|
+
brandyPreset: 'Brandy (38°)',
|
|
23
|
+
neutralPreset: 'Neutral (96°)',
|
|
24
|
+
aguardientePreset: 'Aguardiente (42°)',
|
|
25
|
+
targetAbvLabel: 'Target ABV (%)',
|
|
26
|
+
targetVolumeLabel: 'Target total volume (L)',
|
|
27
|
+
resultsTitle: 'Your Recipe',
|
|
28
|
+
addLabel: 'Add',
|
|
29
|
+
finalVolumeLabel: 'Final volume',
|
|
30
|
+
bottlesSection: 'Bottles needed',
|
|
31
|
+
copyBtn: 'Copy Recipe',
|
|
32
|
+
copiedBtn: 'Copied!',
|
|
33
|
+
pearsonTitle: 'Pearson Square',
|
|
34
|
+
wineCornerLabel: 'Wine',
|
|
35
|
+
spiritCornerLabel: 'Spirit',
|
|
36
|
+
emptyState: 'Enter your values to see the Pearson Square',
|
|
37
|
+
errorAbv: 'Spirit ABV must be higher than target, and target must be higher than wine ABV.',
|
|
38
|
+
errorMode: 'Enter a valid volume to calculate.',
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const faqTitle = 'Frequently Asked Questions';
|
|
42
|
+
|
|
43
|
+
const faq: FortifiedWineBuilderLocaleContent['faq'] = [
|
|
44
|
+
{
|
|
45
|
+
question: 'What is the Pearson Square method?',
|
|
46
|
+
answer: 'The Pearson Square is a simple graphical method used in winemaking to calculate blending ratios. You place the target ABV in the center, the wine ABV at the top-left, and the spirit ABV at the bottom-left. The diagonal differences give the proportional parts of each liquid needed.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: 'What is the typical ABV for vermouth?',
|
|
50
|
+
answer: 'Traditional vermouth ranges from 15% to 18% ABV. Dry (French-style) vermouth is usually at the lower end (15-16%), while sweet (Italian-style) vermouth is often 16-18%.',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
question: 'What base wine should I use for vermouth?',
|
|
54
|
+
answer: 'A neutral, dry white wine between 10-12% ABV works best. The wine provides the backbone; since it will be aromatized with botanicals, you do not need an expensive wine — a clean, acidic base is ideal.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: 'Can I use neutral alcohol instead of brandy?',
|
|
58
|
+
answer: 'Yes. Neutral alcohol (96% ABV) gives you maximum control and a cleaner flavour profile. Brandy adds its own character (oak, dried fruit, vanilla) which can be desirable depending on the style. Port traditionally uses grape brandy.',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
question: 'How does fortification preserve wine?',
|
|
62
|
+
answer: 'When wine ABV exceeds roughly 15-16%, yeast fermentation becomes inhibited. This is why fortified wines have much longer shelf lives — the alcohol acts as a natural preservative against both yeast and bacterial spoilage.',
|
|
63
|
+
},
|
|
64
|
+
];
|
|
65
|
+
|
|
66
|
+
const howTo: FortifiedWineBuilderLocaleContent['howTo'] = [
|
|
67
|
+
{ name: 'Choose your style', text: 'Select Vermouth, Port, Sherry, or Custom to auto-fill the recommended target ABV.' },
|
|
68
|
+
{ name: 'Enter wine data', text: 'Input your base wine volume (or target final volume in Mode B) and its current ABV.' },
|
|
69
|
+
{ name: 'Set your spirit', text: 'Choose a spirit preset or enter a custom ABV. The Pearson Square updates in real time.' },
|
|
70
|
+
{ name: 'Read your recipe', text: 'The calculator shows exactly how many litres of spirit to add and the final volume.' },
|
|
71
|
+
];
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
const seo: FortifiedWineBuilderLocaleContent['seo'] = [
|
|
75
|
+
{ type: 'title', text: 'The Pearson Square: Ancient Math, Perfect Wine', level: 2 },
|
|
76
|
+
{
|
|
77
|
+
type: 'paragraph',
|
|
78
|
+
html: 'The <strong>Pearson Square</strong> is one of the oldest and most elegant tools in winemaking mathematics. Developed in the 19th century, it allows any winemaker — professional or amateur — to calculate blending ratios with nothing more than subtraction. Our tool digitises this visual method and adds real-time feedback, so you spend less time calculating and more time crafting.',
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
type: 'stats',
|
|
82
|
+
items: [
|
|
83
|
+
{ label: 'Vermouth', value: '15–18% ABV', icon: 'mdi:glass-cocktail' },
|
|
84
|
+
{ label: 'Port', value: '18–20% ABV', icon: 'mdi:bottle-wine' },
|
|
85
|
+
{ label: 'Sherry', value: '15–17% ABV', icon: 'mdi:cup-water' },
|
|
86
|
+
],
|
|
87
|
+
columns: 3,
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
type: 'card',
|
|
91
|
+
title: 'Why fortify at 18%?',
|
|
92
|
+
icon: 'mdi:shield-check',
|
|
93
|
+
html: 'Above roughly 15% ABV, <em>Saccharomyces cerevisiae</em> — the primary wine yeast — becomes inhibited. By 18%, fermentation is completely arrested. This is why Port retains residual sweetness: spirits are added mid-fermentation, killing the yeast before all sugar is consumed.',
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
type: 'tip',
|
|
97
|
+
title: 'Pro Tip: Measure at 20°C',
|
|
98
|
+
html: 'Alcohol density changes with temperature. Official ABV measurements are calibrated at 20°C. If your spirit or wine is significantly colder or warmer, apply a correction: roughly +0.04% ABV per °C below 20°C.',
|
|
99
|
+
},
|
|
100
|
+
{ type: 'title', text: 'The Craft Vermouth Renaissance', level: 2 },
|
|
101
|
+
{
|
|
102
|
+
type: 'paragraph',
|
|
103
|
+
html: 'Southern Europe is experiencing a craft vermouth renaissance. Barcelona, Valencia, and San Sebastián have reclaimed <em>la hora del vermut</em> as a cultural institution, and small producers across Spain, Italy, and France are bottling remarkable expressions. This has created a new generation of home producers who want the technical tools to match their ambition.',
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
type: 'summary',
|
|
107
|
+
title: 'Who is this tool for?',
|
|
108
|
+
items: [
|
|
109
|
+
'Home winemakers: Fortify your harvest with precision instead of guesswork.',
|
|
110
|
+
'Craft vermouth producers: Prototype new ABV targets before scaling to full batches.',
|
|
111
|
+
'Spirits educators: Demonstrate the Pearson Square method visually in workshops.',
|
|
112
|
+
],
|
|
113
|
+
},
|
|
114
|
+
];
|
|
115
|
+
|
|
116
|
+
const schemas: FortifiedWineBuilderLocaleContent['schemas'] = [
|
|
117
|
+
{
|
|
118
|
+
'@context': 'https://schema.org',
|
|
119
|
+
'@type': 'FAQPage',
|
|
120
|
+
mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })),
|
|
121
|
+
} as WithContext<FAQPage>,
|
|
122
|
+
{
|
|
123
|
+
'@context': 'https://schema.org',
|
|
124
|
+
'@type': 'HowTo',
|
|
125
|
+
name: title,
|
|
126
|
+
description,
|
|
127
|
+
step: howTo.map((step, i) => ({ '@type': 'HowToStep', position: i + 1, name: step.name, text: step.text })),
|
|
128
|
+
} as WithContext<HowTo>,
|
|
129
|
+
{
|
|
130
|
+
'@context': 'https://schema.org',
|
|
131
|
+
'@type': 'SoftwareApplication',
|
|
132
|
+
name: title,
|
|
133
|
+
description,
|
|
134
|
+
applicationCategory: 'UtilityApplication',
|
|
135
|
+
operatingSystem: 'Web',
|
|
136
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
137
|
+
} as WithContext<SoftwareApplication>,
|
|
138
|
+
];
|
|
139
|
+
|
|
140
|
+
export const content: FortifiedWineBuilderLocaleContent = { slug, title, description, ui, seo, faqTitle, faq, bibliography, howTo, schemas };
|
|
@@ -0,0 +1,140 @@
|
|
|
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 = 'constructor-vino-fortificado';
|
|
6
|
+
const title = 'Constructor de Vino Fortificado y Vermut: Cuadrado de Pearson';
|
|
7
|
+
const description = 'Calcula exactamente cuánto alcohol añadir a tu vino para alcanzar el grado deseado. Crea vermut, oporto y jerez perfectos con el método del Cuadrado de Pearson.';
|
|
8
|
+
|
|
9
|
+
const ui: FortifiedWineBuilderUI = {
|
|
10
|
+
intentionTitle: '¿Qué estás creando?',
|
|
11
|
+
intentionVermouth: 'Vermut',
|
|
12
|
+
intentionPort: 'Oporto',
|
|
13
|
+
intentionSherry: 'Jerez',
|
|
14
|
+
intentionCustom: 'Personalizado',
|
|
15
|
+
modeALabel: 'Desde el vino que tengo',
|
|
16
|
+
modeBLabel: 'Volumen final objetivo',
|
|
17
|
+
wineSection: 'Vino Base',
|
|
18
|
+
wineVolumeLabel: 'Volumen de vino (L)',
|
|
19
|
+
wineAbvLabel: 'Graduación del vino (%)',
|
|
20
|
+
spiritSection: 'Alcohol Fortificante',
|
|
21
|
+
spiritAbvLabel: 'Graduación del alcohol (%)',
|
|
22
|
+
brandyPreset: 'Brandy (38°)',
|
|
23
|
+
neutralPreset: 'Neutro (96°)',
|
|
24
|
+
aguardientePreset: 'Aguardiente (42°)',
|
|
25
|
+
targetAbvLabel: 'Graduación objetivo (%)',
|
|
26
|
+
targetVolumeLabel: 'Volumen total objetivo (L)',
|
|
27
|
+
resultsTitle: 'Tu Receta',
|
|
28
|
+
addLabel: 'Añadir',
|
|
29
|
+
finalVolumeLabel: 'Volumen final',
|
|
30
|
+
bottlesSection: 'Botellas necesarias',
|
|
31
|
+
copyBtn: 'Copiar Receta',
|
|
32
|
+
copiedBtn: '¡Copiado!',
|
|
33
|
+
pearsonTitle: 'Cuadrado de Pearson',
|
|
34
|
+
wineCornerLabel: 'Vino',
|
|
35
|
+
spiritCornerLabel: 'Alcohol',
|
|
36
|
+
emptyState: 'Introduce tus valores para ver el Cuadrado de Pearson',
|
|
37
|
+
errorAbv: 'La graduación del alcohol debe ser mayor que el objetivo, y el objetivo mayor que la del vino.',
|
|
38
|
+
errorMode: 'Introduce un volumen válido para calcular.',
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const faqTitle = 'Preguntas Frecuentes';
|
|
42
|
+
|
|
43
|
+
const faq: FortifiedWineBuilderLocaleContent['faq'] = [
|
|
44
|
+
{
|
|
45
|
+
question: '¿Qué es el método del Cuadrado de Pearson?',
|
|
46
|
+
answer: 'El Cuadrado de Pearson es un método gráfico sencillo usado en enología para calcular proporciones de mezcla. Se coloca la graduación objetivo en el centro, la del vino en la esquina superior izquierda y la del alcohol en la inferior izquierda. Las diferencias en diagonal dan las partes proporcionales de cada líquido.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: '¿Cuál es la graduación típica del vermut?',
|
|
50
|
+
answer: 'El vermut tradicional oscila entre el 15% y el 18% de alcohol. El vermut seco (estilo francés) suele estar en la parte baja (15-16%), mientras que el vermut dulce (estilo italiano) llega al 16-18%.',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
question: '¿Qué vino base debo usar para el vermut?',
|
|
54
|
+
answer: 'Lo ideal es un vino blanco seco y neutro de entre el 10-12% de alcohol. El vino da la estructura base; como será aromatizado con hierbas y botánicos, no necesitas uno caro — una base limpia y ácida es perfecta.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: '¿Puedo usar alcohol neutro en vez de brandy?',
|
|
58
|
+
answer: 'Sí. El alcohol neutro (96%) te da máximo control y un perfil más limpio. El brandy aporta su propio carácter (roble, fruta pasa, vainilla) que puede ser deseable o no según el estilo. El oporto usa tradicionalmente aguardiente vínico.',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
question: '¿Cómo conserva el vino la fortificación?',
|
|
62
|
+
answer: 'Cuando el alcohol supera aproximadamente el 15-16%, la levadura deja de fermentar. Por eso los vinos fortificados tienen una vida útil mucho mayor: el alcohol actúa como conservante natural contra levaduras y bacterias.',
|
|
63
|
+
},
|
|
64
|
+
];
|
|
65
|
+
|
|
66
|
+
const howTo: FortifiedWineBuilderLocaleContent['howTo'] = [
|
|
67
|
+
{ name: 'Elige tu estilo', text: 'Selecciona Vermut, Oporto, Jerez o Personalizado para preconfigurar la graduación objetivo recomendada.' },
|
|
68
|
+
{ name: 'Introduce los datos del vino', text: 'Introduce el volumen de tu vino base (o el volumen total objetivo en el Modo B) y su graduación actual.' },
|
|
69
|
+
{ name: 'Configura el alcohol', text: 'Elige un preset de alcohol o introduce una graduación personalizada. El Cuadrado de Pearson se actualiza en tiempo real.' },
|
|
70
|
+
{ name: 'Lee tu receta', text: 'La calculadora te indica exactamente cuántos litros de alcohol añadir y el volumen final resultante.' },
|
|
71
|
+
];
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
const seo: FortifiedWineBuilderLocaleContent['seo'] = [
|
|
75
|
+
{ type: 'title', text: 'El Cuadrado de Pearson: Matemática Antigua, Vino Perfecto', level: 2 },
|
|
76
|
+
{
|
|
77
|
+
type: 'paragraph',
|
|
78
|
+
html: 'El <strong>Cuadrado de Pearson</strong> es una de las herramientas más antiguas y elegantes de la matemática enológica. Desarrollado en el siglo XIX, permite a cualquier elaborador —profesional o aficionado— calcular proporciones de mezcla con solo sumas y restas. Nuestra herramienta digitaliza este método visual y añade retroalimentación en tiempo real.',
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
type: 'stats',
|
|
82
|
+
items: [
|
|
83
|
+
{ label: 'Vermut', value: '15–18% Vol.', icon: 'mdi:glass-cocktail' },
|
|
84
|
+
{ label: 'Oporto', value: '18–20% Vol.', icon: 'mdi:bottle-wine' },
|
|
85
|
+
{ label: 'Jerez', value: '15–17% Vol.', icon: 'mdi:cup-water' },
|
|
86
|
+
],
|
|
87
|
+
columns: 3,
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
type: 'card',
|
|
91
|
+
title: '¿Por qué fortify al 18%?',
|
|
92
|
+
icon: 'mdi:shield-check',
|
|
93
|
+
html: 'A partir de aproximadamente el 15% de alcohol, el <em>Saccharomyces cerevisiae</em> —la levadura principal del vino— queda inhibida. Al llegar al 18%, la fermentación se detiene completamente. Por eso el oporto conserva azúcar residual: el aguardiente se añade a mitad de la fermentación, matando la levadura antes de que consuma todo el azúcar.',
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
type: 'tip',
|
|
97
|
+
title: 'Consejo Pro: Mide a 20°C',
|
|
98
|
+
html: 'La densidad del alcohol cambia con la temperatura. Las medidas oficiales de graduación se calibran a 20°C. Si tu alcohol o vino está más frío o caliente, aplica una corrección: aproximadamente +0,04% por cada °C por debajo de 20°C.',
|
|
99
|
+
},
|
|
100
|
+
{ type: 'title', text: 'El Renacimiento del Vermut Artesanal', level: 2 },
|
|
101
|
+
{
|
|
102
|
+
type: 'paragraph',
|
|
103
|
+
html: 'El sur de Europa vive un renacimiento del vermut artesanal. Barcelona, Valencia y San Sebastián han recuperado <em>la hora del vermut</em> como institución cultural, y pequeños productores de España, Italia y Francia están embotellando expresiones notables. Esto ha creado una nueva generación de elaboradores caseros que necesitan herramientas técnicas a la altura de su ambición.',
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
type: 'summary',
|
|
107
|
+
title: '¿Para quién es esta herramienta?',
|
|
108
|
+
items: [
|
|
109
|
+
'Elaboradores caseros: Fortifica tu cosecha con precisión en lugar de a ojo.',
|
|
110
|
+
'Productores de vermut artesanal: Prototipa nuevas graduaciones objetivo antes de escalar a lotes completos.',
|
|
111
|
+
'Educadores: Demuestra el método del Cuadrado de Pearson visualmente en talleres.',
|
|
112
|
+
],
|
|
113
|
+
},
|
|
114
|
+
];
|
|
115
|
+
|
|
116
|
+
const schemas: FortifiedWineBuilderLocaleContent['schemas'] = [
|
|
117
|
+
{
|
|
118
|
+
'@context': 'https://schema.org',
|
|
119
|
+
'@type': 'FAQPage',
|
|
120
|
+
mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })),
|
|
121
|
+
} as WithContext<FAQPage>,
|
|
122
|
+
{
|
|
123
|
+
'@context': 'https://schema.org',
|
|
124
|
+
'@type': 'HowTo',
|
|
125
|
+
name: title,
|
|
126
|
+
description,
|
|
127
|
+
step: howTo.map((step, i) => ({ '@type': 'HowToStep', position: i + 1, name: step.name, text: step.text })),
|
|
128
|
+
} as WithContext<HowTo>,
|
|
129
|
+
{
|
|
130
|
+
'@context': 'https://schema.org',
|
|
131
|
+
'@type': 'SoftwareApplication',
|
|
132
|
+
name: title,
|
|
133
|
+
description,
|
|
134
|
+
applicationCategory: 'UtilityApplication',
|
|
135
|
+
operatingSystem: 'Web',
|
|
136
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
137
|
+
} as WithContext<SoftwareApplication>,
|
|
138
|
+
];
|
|
139
|
+
|
|
140
|
+
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 = 'constructeur-vin-fortifie';
|
|
6
|
+
const title = 'Constructeur de Vin Fortifié & Vermouth : Calculateur Carré de Pearson';
|
|
7
|
+
const description = 'Calculez exactement quelle quantité d\'alcool ajouter à votre vin pour atteindre le degré alcoolique cible. Élaborez le vermouth, le porto et le xérès parfaits grâce à la méthode du carré de Pearson.';
|
|
8
|
+
|
|
9
|
+
const ui: FortifiedWineBuilderUI = {
|
|
10
|
+
intentionTitle: 'Que créez-vous ?',
|
|
11
|
+
intentionVermouth: 'Vermouth',
|
|
12
|
+
intentionPort: 'Porto',
|
|
13
|
+
intentionSherry: 'Xérès',
|
|
14
|
+
intentionCustom: 'Personnalisé',
|
|
15
|
+
modeALabel: 'À partir du vin que j\'ai',
|
|
16
|
+
modeBLabel: 'Volume final cible',
|
|
17
|
+
wineSection: 'Vin de base',
|
|
18
|
+
wineVolumeLabel: 'Volume de vin (L)',
|
|
19
|
+
wineAbvLabel: 'TAV du vin (%)',
|
|
20
|
+
spiritSection: 'Alcool de fortification',
|
|
21
|
+
spiritAbvLabel: 'TAV de l\'alcool (%)',
|
|
22
|
+
brandyPreset: 'Brandy (38°)',
|
|
23
|
+
neutralPreset: 'Neutre (96°)',
|
|
24
|
+
aguardientePreset: 'Aguardiente (42°)',
|
|
25
|
+
targetAbvLabel: 'TAV cible (%)',
|
|
26
|
+
targetVolumeLabel: 'Volume total cible (L)',
|
|
27
|
+
resultsTitle: 'Votre Recette',
|
|
28
|
+
addLabel: 'Ajouter',
|
|
29
|
+
finalVolumeLabel: 'Volume final',
|
|
30
|
+
bottlesSection: 'Bouteilles nécessaires',
|
|
31
|
+
copyBtn: 'Copier la recette',
|
|
32
|
+
copiedBtn: 'Copié !',
|
|
33
|
+
pearsonTitle: 'Carré de Pearson',
|
|
34
|
+
wineCornerLabel: 'Vin',
|
|
35
|
+
spiritCornerLabel: 'Alcool',
|
|
36
|
+
emptyState: 'Entrez vos valeurs pour voir le carré de Pearson',
|
|
37
|
+
errorAbv: 'Le TAV de l\'alcool doit être supérieur au TAV cible, et le TAV cible doit être supérieur au TAV du vin.',
|
|
38
|
+
errorMode: 'Entrez un volume valide pour effectuer le calcul.',
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const faqTitle = 'Foire Aux Questions';
|
|
42
|
+
|
|
43
|
+
const faq: FortifiedWineBuilderLocaleContent['faq'] = [
|
|
44
|
+
{
|
|
45
|
+
question: 'Qu\'est-ce que la méthode du carré de Pearson ?',
|
|
46
|
+
answer: 'Le carré de Pearson est une méthode graphique simple utilisée en vinification pour calculer les ratios de mélange. On place le TAV cible au centre du carré, le TAV du vin en haut à gauche et le TAV de l\'alcool en bas à gauche. Les différences diagonales donnent les parts proportionnelles de chaque liquide nécessaires.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: 'Quel est le TAV typique du vermouth ?',
|
|
50
|
+
answer: 'Le vermouth traditionnel a un TAV compris entre 15 % et 18 %. Le vermouth sec (style français) se situe généralement dans la partie basse (15–16 %), tandis que le vermouth doux (style italien) atteint souvent 16–18 %. Le vermouth rosé se trouve entre les deux.',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
question: 'Quel vin de base utiliser pour le vermouth ?',
|
|
54
|
+
answer: 'Traditionnellement, un vin blanc sec et neutre entre 10 et 12 % TAV convient le mieux. Le vin constitue la base, mais comme il sera aromatisé avec des herbes et des botaniques, il n\'est pas nécessaire d\'utiliser un vin coûteux — une base propre et acide est idéale.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: 'Puis-je utiliser de l\'alcool neutre à la place du brandy ?',
|
|
58
|
+
answer: 'Oui. L\'alcool neutre (96 % vol.) offre un contrôle maximal et un profil de saveur plus pur. Le brandy apporte son propre caractère (chêne, fruits secs, vanille), ce qui peut être souhaitable ou indésirable selon le style. Le porto utilise traditionnellement du brandy de raisin, tandis que certains vermouths utilisent de l\'alcool neutre.',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
question: 'Comment la fortification conserve-t-elle le vin ?',
|
|
62
|
+
answer: 'Lorsque le TAV du vin dépasse environ 15–16 %, la fermentation par les levures est inhibée — les levures ne peuvent pas survivre dans des environnements à haute teneur en alcool. C\'est pourquoi les vins fortifiés ont une durée de conservation bien plus longue que les vins ordinaires. L\'alcool agit comme conservateur naturel contre la détérioration par les levures et les bactéries.',
|
|
63
|
+
},
|
|
64
|
+
];
|
|
65
|
+
|
|
66
|
+
const howTo: FortifiedWineBuilderLocaleContent['howTo'] = [
|
|
67
|
+
{ name: 'Choisir le style', text: 'Sélectionnez Vermouth, Porto, Xérès ou Personnalisé pour préremplir automatiquement la plage de TAV cible recommandée.' },
|
|
68
|
+
{ name: 'Saisir les données du vin', text: 'Indiquez le volume de votre vin de base (ou le volume final cible en mode B) et son TAV actuel.' },
|
|
69
|
+
{ name: 'Définir l\'alcool', text: 'Choisissez un préréglage d\'alcool ou saisissez un TAV personnalisé. Le carré de Pearson se met à jour en temps réel.' },
|
|
70
|
+
{ name: 'Lire votre recette', text: 'Le calculateur indique exactement combien de millilitres d\'alcool ajouter et le volume final.' },
|
|
71
|
+
];
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
const seo: FortifiedWineBuilderLocaleContent['seo'] = [
|
|
75
|
+
{ type: 'title', text: 'Le Carré de Pearson : Mathématiques ancestrales, vin parfait', level: 2 },
|
|
76
|
+
{ type: 'paragraph', html: 'Le <strong>carré de Pearson</strong> est l\'un des outils les plus anciens et les plus élégants des mathématiques vinicoles. Développé au XIXe siècle, il permet à tout vigneron — professionnel ou amateur — de calculer des ratios de mélange avec rien de plus que des soustractions. Notre outil numérise cette méthode visuelle et ajoute un retour en temps réel, pour que vous passiez moins de temps à calculer et plus de temps à élaborer.' },
|
|
77
|
+
{ type: 'stats', items: [{ label: 'Vermouth', value: '15–18 % vol.', icon: 'mdi:glass-cocktail' }, { label: 'Porto', value: '18–20 % vol.', icon: 'mdi:bottle-wine' }, { label: 'Xérès', value: '15–17 % vol.', icon: 'mdi:cup-water' }], columns: 3 },
|
|
78
|
+
{ type: 'card', title: 'Pourquoi fortifier à 18 % ?', icon: 'mdi:shield-check', html: 'Au-delà d\'environ 15 % vol., <em>Saccharomyces cerevisiae</em> — la principale levure du vin — est inhibée. À 18 %, la fermentation est complètement arrêtée. C\'est pourquoi le porto conserve son sucre résiduel : l\'alcool est ajouté en cours de fermentation, tuant la levure avant que tout le sucre soit consommé.' },
|
|
79
|
+
{ type: 'tip', title: 'Conseil de pro : Mesurer à 20 °C', html: 'La densité de l\'alcool varie avec la température. Les mesures officielles de TAV sont calibrées à 20 °C. Si votre alcool ou votre vin est significativement plus chaud ou plus froid, appliquez un facteur de correction : environ +0,04 % vol. par °C en dessous de 20 °C et −0,04 % par °C au-dessus.' },
|
|
80
|
+
{ type: 'title', text: 'La Renaissance du Vermouth Artisanal', level: 2 },
|
|
81
|
+
{ type: 'paragraph', html: 'L\'Europe du Sud connaît une renaissance du vermouth artisanal. Barcelone, Valence et Saint-Sébastien ont reconquis <em>la hora del vermut</em> comme institution culturelle, et de petits producteurs en Espagne, en Italie et en France mettent en bouteille des expressions remarquables. Cela a créé une nouvelle génération de producteurs maison qui souhaitent des outils techniques à la hauteur de leurs ambitions.' },
|
|
82
|
+
{ type: 'summary', title: 'À qui s\'adresse cet outil ?', items: ['Vignerons amateurs : Fortifiez votre récolte avec précision plutôt qu\'au hasard.', 'Producteurs de vermouth artisanal : Prototypez de nouveaux TAV cibles avant de passer à de grandes quantités.', 'Éducateurs en spiritueux : Démontrez visuellement la méthode du carré de Pearson en atelier.'] },
|
|
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 = 'pembuat-wine-fortifikasi';
|
|
6
|
+
const title = 'Pembuat Wine Fortifikasi & Vermouth: Kalkulator Metode Pearson Square';
|
|
7
|
+
const description = 'Hitung tepat berapa banyak spirit yang perlu ditambahkan ke wine Anda untuk mencapai kadar alkohol target. Buat vermouth, port, dan sherry sempurna dengan metode Pearson Square.';
|
|
8
|
+
|
|
9
|
+
const ui: FortifiedWineBuilderUI = {
|
|
10
|
+
intentionTitle: 'Apa yang sedang Anda buat?',
|
|
11
|
+
intentionVermouth: 'Vermouth',
|
|
12
|
+
intentionPort: 'Port',
|
|
13
|
+
intentionSherry: 'Sherry',
|
|
14
|
+
intentionCustom: 'Kustom',
|
|
15
|
+
modeALabel: 'Dari wine yang saya punya',
|
|
16
|
+
modeBLabel: 'Target volume akhir',
|
|
17
|
+
wineSection: 'Wine Dasar',
|
|
18
|
+
wineVolumeLabel: 'Volume wine (L)',
|
|
19
|
+
wineAbvLabel: 'Kadar alkohol wine (%)',
|
|
20
|
+
spiritSection: 'Spirit Fortifikasi',
|
|
21
|
+
spiritAbvLabel: 'Kadar alkohol spirit (%)',
|
|
22
|
+
brandyPreset: 'Brandy (38°)',
|
|
23
|
+
neutralPreset: 'Netral (96°)',
|
|
24
|
+
aguardientePreset: 'Aguardiente (42°)',
|
|
25
|
+
targetAbvLabel: 'Target kadar alkohol (%)',
|
|
26
|
+
targetVolumeLabel: 'Target total volume (L)',
|
|
27
|
+
resultsTitle: 'Resep Anda',
|
|
28
|
+
addLabel: 'Tambahkan',
|
|
29
|
+
finalVolumeLabel: 'Volume akhir',
|
|
30
|
+
bottlesSection: 'Botol yang dibutuhkan',
|
|
31
|
+
copyBtn: 'Salin Resep',
|
|
32
|
+
copiedBtn: 'Tersalin!',
|
|
33
|
+
pearsonTitle: 'Pearson Square',
|
|
34
|
+
wineCornerLabel: 'Wine',
|
|
35
|
+
spiritCornerLabel: 'Spirit',
|
|
36
|
+
emptyState: 'Masukkan nilai Anda untuk melihat Pearson Square',
|
|
37
|
+
errorAbv: 'Kadar alkohol spirit harus lebih tinggi dari target, dan target harus lebih tinggi dari kadar alkohol wine.',
|
|
38
|
+
errorMode: 'Masukkan volume yang valid untuk menghitung.',
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const faqTitle = 'Pertanyaan yang Sering Diajukan';
|
|
42
|
+
|
|
43
|
+
const faq: FortifiedWineBuilderLocaleContent['faq'] = [
|
|
44
|
+
{
|
|
45
|
+
question: 'Apa itu metode Pearson Square?',
|
|
46
|
+
answer: 'Pearson Square adalah metode grafis sederhana yang digunakan dalam pembuatan wine untuk menghitung rasio pencampuran. Anda menempatkan target kadar alkohol di tengah kotak, kadar alkohol wine di sudut kiri atas, dan kadar alkohol spirit di sudut kiri bawah. Selisih diagonal memberikan bagian proporsional dari setiap cairan yang dibutuhkan.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: 'Berapa kadar alkohol tipikal untuk vermouth?',
|
|
50
|
+
answer: 'Vermouth tradisional memiliki kadar alkohol antara 15% hingga 18%. Vermouth kering (gaya Perancis) biasanya berada di kisaran bawah (15-16%), sementara vermouth manis (gaya Italia) sering mencapai 16-18%. Vermouth rosé berada di antara keduanya.',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
question: 'Wine dasar apa yang harus saya gunakan untuk vermouth?',
|
|
54
|
+
answer: 'Secara tradisional, wine putih kering dan netral dengan kadar alkohol 10-12% paling cocok digunakan. Wine memberikan tulang punggung, tetapi karena akan diberi aroma dengan rempah dan bahan botanikal, Anda tidak perlu wine mahal — dasar yang bersih dan asam adalah yang ideal.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: 'Bisakah saya menggunakan alkohol netral sebagai pengganti brandy?',
|
|
58
|
+
answer: 'Ya. Alkohol netral (96% vol.) memberikan kontrol maksimal dan profil rasa yang lebih bersih. Brandy menambahkan karakternya sendiri (kayu ek, buah kering, vanila) yang bisa diinginkan atau tidak tergantung pada gayanya. Port secara tradisional menggunakan brandy anggur, sementara beberapa vermouth menggunakan spirit netral.',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
question: 'Bagaimana fortifikasi mengawetkan wine?',
|
|
62
|
+
answer: 'Ketika kadar alkohol wine melebihi sekitar 15-16%, fermentasi oleh ragi terhambat — ragi tidak dapat bertahan di lingkungan beralkohol tinggi. Inilah mengapa wine fortifikasi memiliki umur simpan yang jauh lebih panjang daripada wine biasa. Alkohol bertindak sebagai pengawet alami terhadap pembusukan oleh ragi maupun bakteri.',
|
|
63
|
+
},
|
|
64
|
+
];
|
|
65
|
+
|
|
66
|
+
const howTo: FortifiedWineBuilderLocaleContent['howTo'] = [
|
|
67
|
+
{ name: 'Pilih gaya', text: 'Pilih Vermouth, Port, Sherry, atau Kustom untuk mengisi otomatis rentang target kadar alkohol yang direkomendasikan.' },
|
|
68
|
+
{ name: 'Masukkan data wine', text: 'Masukkan volume wine dasar Anda (atau target volume akhir di Mode B) dan kadar alkohol saat ini.' },
|
|
69
|
+
{ name: 'Atur spirit', text: 'Pilih preset spirit atau masukkan kadar alkohol kustom. Pearson Square diperbarui secara real-time.' },
|
|
70
|
+
{ name: 'Baca resep Anda', text: 'Kalkulator menampilkan tepat berapa mililiter spirit yang harus ditambahkan dan volume akhirnya.' },
|
|
71
|
+
];
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
const seo: FortifiedWineBuilderLocaleContent['seo'] = [
|
|
75
|
+
{ type: 'title', text: 'Pearson Square: Matematika Kuno, Wine Sempurna', level: 2 },
|
|
76
|
+
{ type: 'paragraph', html: '<strong>Pearson Square</strong> adalah salah satu alat paling tua dan elegan dalam matematika pembuatan wine. Dikembangkan pada abad ke-19, alat ini memungkinkan siapa pun — profesional atau amatir — untuk menghitung rasio pencampuran hanya dengan pengurangan. Alat kami mendigitalkan metode visual ini dan menambahkan umpan balik real-time, sehingga Anda menghabiskan lebih sedikit waktu untuk menghitung dan lebih banyak waktu untuk berkreasi.' },
|
|
77
|
+
{ type: 'stats', items: [{ label: 'Vermouth', 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: 'Mengapa fortifikasi pada 18%?', icon: 'mdi:shield-check', html: 'Di atas sekitar 15% vol., <em>Saccharomyces cerevisiae</em> — ragi wine utama — mulai terhambat. Saat mencapai 18%, fermentasi sepenuhnya terhenti. Inilah mengapa wine Port mempertahankan gula sisa: spirit ditambahkan di tengah fermentasi, membunuh ragi sebelum semua gula dikonsumsi.' },
|
|
79
|
+
{ type: 'tip', title: 'Tips Pro: Ukur pada 20°C', html: 'Kerapatan alkohol berubah seiring suhu. Pengukuran kadar alkohol resmi dikalibrasi pada 20°C. Jika spirit atau wine Anda jauh lebih hangat atau dingin, terapkan faktor koreksi: sekitar +0,04% vol. per °C di bawah 20°C, dan −0,04% per °C di atasnya.' },
|
|
80
|
+
{ type: 'title', text: 'Renaisans Vermouth Artisanal', level: 2 },
|
|
81
|
+
{ type: 'paragraph', html: 'Eropa selatan sedang mengalami renaisans vermouth artisanal. Barcelona, Valencia, dan San Sebastián telah merebut kembali <em>la hora del vermut</em> sebagai institusi budaya, dan produsen kecil di Spanyol, Italia, dan Prancis membotolkan ekspresi yang luar biasa. Hal ini menciptakan generasi baru produsen rumahan yang menginginkan alat teknis sesuai dengan ambisi mereka.' },
|
|
82
|
+
{ type: 'summary', title: 'Untuk siapa alat ini?', items: ['Pembuat wine rumahan: Fortifikasi panen Anda dengan presisi, bukan tebakan.', 'Produsen vermouth artisanal: Buat prototipe target kadar alkohol baru sebelum diskalakan ke batch penuh.', 'Pendidik spirits: Demonstrasikan metode Pearson Square secara visual dalam workshop.'] },
|
|
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 = 'costruttore-vino-fortificato';
|
|
6
|
+
const title = 'Costruttore di Vino Fortificato & Vermouth: Calcolatore Quadrato di Pearson';
|
|
7
|
+
const description = 'Calcola esattamente quanto distillato aggiungere al tuo vino per raggiungere la gradazione alcolica desiderata. Crea il vermouth, il porto e lo sherry perfetti con il metodo del Quadrato di Pearson.';
|
|
8
|
+
|
|
9
|
+
const ui: FortifiedWineBuilderUI = {
|
|
10
|
+
intentionTitle: 'Cosa stai creando?',
|
|
11
|
+
intentionVermouth: 'Vermouth',
|
|
12
|
+
intentionPort: 'Porto',
|
|
13
|
+
intentionSherry: 'Sherry',
|
|
14
|
+
intentionCustom: 'Personalizzato',
|
|
15
|
+
modeALabel: 'Dal vino che ho',
|
|
16
|
+
modeBLabel: 'Volume finale desiderato',
|
|
17
|
+
wineSection: 'Vino Base',
|
|
18
|
+
wineVolumeLabel: 'Volume del vino (L)',
|
|
19
|
+
wineAbvLabel: 'Gradazione vino (%)',
|
|
20
|
+
spiritSection: 'Distillato di Fortificazione',
|
|
21
|
+
spiritAbvLabel: 'Gradazione distillato (%)',
|
|
22
|
+
brandyPreset: 'Brandy (38°)',
|
|
23
|
+
neutralPreset: 'Neutro (96°)',
|
|
24
|
+
aguardientePreset: 'Aguardiente (42°)',
|
|
25
|
+
targetAbvLabel: 'Gradazione obiettivo (%)',
|
|
26
|
+
targetVolumeLabel: 'Volume totale obiettivo (L)',
|
|
27
|
+
resultsTitle: 'La Tua Ricetta',
|
|
28
|
+
addLabel: 'Aggiungere',
|
|
29
|
+
finalVolumeLabel: 'Volume finale',
|
|
30
|
+
bottlesSection: 'Bottiglie necessarie',
|
|
31
|
+
copyBtn: 'Copia Ricetta',
|
|
32
|
+
copiedBtn: 'Copiato!',
|
|
33
|
+
pearsonTitle: 'Quadrato di Pearson',
|
|
34
|
+
wineCornerLabel: 'Vino',
|
|
35
|
+
spiritCornerLabel: 'Distillato',
|
|
36
|
+
emptyState: 'Inserisci i tuoi valori per vedere il Quadrato di Pearson',
|
|
37
|
+
errorAbv: 'La gradazione del distillato deve essere superiore alla gradazione obiettivo, e l\'obiettivo deve essere superiore alla gradazione del vino.',
|
|
38
|
+
errorMode: 'Inserisci un volume valido per calcolare.',
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const faqTitle = 'Domande Frequenti';
|
|
42
|
+
|
|
43
|
+
const faq: FortifiedWineBuilderLocaleContent['faq'] = [
|
|
44
|
+
{
|
|
45
|
+
question: 'Cos\'è il metodo del Quadrato di Pearson?',
|
|
46
|
+
answer: 'Il Quadrato di Pearson è un semplice metodo grafico utilizzato in enologia per calcolare i rapporti di miscelazione. Si inserisce la gradazione alcolica obiettivo al centro del quadrato, la gradazione del vino in alto a sinistra e quella del distillato in basso a sinistra. Le differenze diagonali forniscono le parti proporzionali di ciascun liquido necessarie.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: 'Qual è la gradazione tipica del vermouth?',
|
|
50
|
+
answer: 'Il vermouth tradizionale ha una gradazione compresa tra il 15 % e il 18 %. Il vermouth secco (stile francese) si trova generalmente nella fascia bassa (15–16 %), mentre il vermouth dolce (stile italiano) raggiunge spesso il 16–18 %. Il vermouth rosato si colloca nel mezzo.',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
question: 'Quale vino base devo usare per il vermouth?',
|
|
54
|
+
answer: 'Tradizionalmente funziona meglio un vino bianco secco e neutro tra il 10 e il 12 % di gradazione alcolica. Il vino fornisce la struttura di base, ma poiché verrà aromatizzato con erbe e botaniche, non è necessario un vino costoso — una base pulita e acida è l\'ideale.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: 'Posso usare alcol neutro invece del brandy?',
|
|
58
|
+
answer: 'Sì. L\'alcol neutro (96 % vol.) offre il massimo controllo e un profilo aromatico più pulito. Il brandy aggiunge il proprio carattere (quercia, frutta secca, vaniglia), che può essere desiderabile o indesiderabile a seconda dello stile. Il porto usa tradizionalmente acquavite d\'uva, mentre alcuni vermouth utilizzano alcol neutro.',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
question: 'Come fa la fortificazione a conservare il vino?',
|
|
62
|
+
answer: 'Quando la gradazione alcolica del vino supera circa il 15–16 %, la fermentazione da parte dei lieviti viene inibita — i lieviti non sopravvivono in ambienti ad alto contenuto alcolico. Per questo motivo i vini fortificati hanno una conservabilità molto più lunga rispetto ai vini normali. L\'alcol agisce come conservante naturale contro il deterioramento da lieviti e batteri.',
|
|
63
|
+
},
|
|
64
|
+
];
|
|
65
|
+
|
|
66
|
+
const howTo: FortifiedWineBuilderLocaleContent['howTo'] = [
|
|
67
|
+
{ name: 'Scegliere lo stile', text: 'Seleziona Vermouth, Porto, Sherry o Personalizzato per compilare automaticamente l\'intervallo di gradazione alcolica obiettivo consigliato.' },
|
|
68
|
+
{ name: 'Inserire i dati del vino', text: 'Inserisci il volume del tuo vino base (o il volume finale obiettivo nel Modo B) e la sua gradazione alcolica attuale.' },
|
|
69
|
+
{ name: 'Impostare il distillato', text: 'Scegli un preset di distillato o inserisci una gradazione personalizzata. Il Quadrato di Pearson si aggiorna in tempo reale.' },
|
|
70
|
+
{ name: 'Leggere la ricetta', text: 'Il calcolatore mostra esattamente quanti millilitri di distillato aggiungere e il volume finale.' },
|
|
71
|
+
];
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
const seo: FortifiedWineBuilderLocaleContent['seo'] = [
|
|
75
|
+
{ type: 'title', text: 'Il Quadrato di Pearson: Matematica antica, vino perfetto', level: 2 },
|
|
76
|
+
{ type: 'paragraph', html: 'Il <strong>Quadrato di Pearson</strong> è uno degli strumenti più antichi ed eleganti della matematica enologica. Sviluppato nel XIX secolo, permette a qualsiasi produttore di vino — professionista o amatore — di calcolare i rapporti di miscelazione con nient\'altro che sottrazioni. Il nostro strumento digitalizza questo metodo visivo e aggiunge un feedback in tempo reale, così passi meno tempo a calcolare e più tempo a creare.' },
|
|
77
|
+
{ type: 'stats', items: [{ label: 'Vermouth', value: '15–18 % vol.', icon: 'mdi:glass-cocktail' }, { label: 'Porto', value: '18–20 % vol.', icon: 'mdi:bottle-wine' }, { label: 'Sherry', value: '15–17 % vol.', icon: 'mdi:cup-water' }], columns: 3 },
|
|
78
|
+
{ type: 'card', title: 'Perché fortificare al 18 %?', icon: 'mdi:shield-check', html: 'Oltre circa il 15 % vol., <em>Saccharomyces cerevisiae</em> — il principale lievito del vino — viene inibito. Raggiunto il 18 %, la fermentazione è completamente arrestata. Ecco perché il vino porto conserva lo zucchero residuo: il distillato viene aggiunto a metà fermentazione, uccidendo il lievito prima che tutto lo zucchero venga consumato.' },
|
|
79
|
+
{ type: 'tip', title: 'Consiglio Pro: Misurare a 20 °C', html: 'La densità dell\'alcol cambia con la temperatura. Le misurazioni ufficiali della gradazione alcolica sono calibrate a 20 °C. Se il tuo distillato o vino è significativamente più caldo o più freddo, applica un fattore di correzione: circa +0,04 % vol. per °C al di sotto dei 20 °C e −0,04 % per °C al di sopra.' },
|
|
80
|
+
{ type: 'title', text: 'La Rinascita del Vermouth Artigianale', level: 2 },
|
|
81
|
+
{ type: 'paragraph', html: 'L\'Europa meridionale sta vivendo una rinascita del vermouth artigianale. Barcellona, Valencia e San Sebastián hanno recuperato <em>la hora del vermut</em> come istituzione culturale, e piccoli produttori in Spagna, Italia e Francia stanno imbottigliando espressioni straordinarie. Ciò ha creato una nuova generazione di produttori casalinghi che desiderano strumenti tecnici all\'altezza delle loro ambizioni.' },
|
|
82
|
+
{ type: 'summary', title: 'A chi serve questo strumento?', items: ['Produttori di vino casalinghi: Fortifica il tuo raccolto con precisione invece di procedere a caso.', 'Produttori di vermouth artigianale: Prototipa nuove gradazioni obiettivo prima di scalare a lotti interi.', 'Educatori del settore spirits: Dimostra visivamente il metodo del Quadrato di Pearson durante i workshop.'] },
|
|
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 };
|