@jjlmoya/utils-babies 1.13.0 → 1.15.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 +2 -2
- package/src/category/index.ts +3 -0
- package/src/entries.ts +4 -1
- package/src/index.ts +1 -0
- package/src/pages/[locale]/[slug].astro +31 -39
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/shared-test-helpers.ts +56 -0
- package/src/tests/tool_exports.test.ts +34 -0
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/baby-budget-planner/baby-budget-planner.css +405 -0
- package/src/tool/baby-budget-planner/bibliography.astro +14 -0
- package/src/tool/baby-budget-planner/bibliography.ts +14 -0
- package/src/tool/baby-budget-planner/component.astro +406 -0
- package/src/tool/baby-budget-planner/entry.ts +77 -0
- package/src/tool/baby-budget-planner/i18n/de.ts +182 -0
- package/src/tool/baby-budget-planner/i18n/en.ts +184 -0
- package/src/tool/baby-budget-planner/i18n/es.ts +183 -0
- package/src/tool/baby-budget-planner/i18n/fr.ts +183 -0
- package/src/tool/baby-budget-planner/i18n/id.ts +183 -0
- package/src/tool/baby-budget-planner/i18n/it.ts +183 -0
- package/src/tool/baby-budget-planner/i18n/ja.ts +183 -0
- package/src/tool/baby-budget-planner/i18n/ko.ts +183 -0
- package/src/tool/baby-budget-planner/i18n/nl.ts +183 -0
- package/src/tool/baby-budget-planner/i18n/pl.ts +183 -0
- package/src/tool/baby-budget-planner/i18n/pt.ts +183 -0
- package/src/tool/baby-budget-planner/i18n/ru.ts +183 -0
- package/src/tool/baby-budget-planner/i18n/sv.ts +183 -0
- package/src/tool/baby-budget-planner/i18n/tr.ts +183 -0
- package/src/tool/baby-budget-planner/i18n/zh.ts +183 -0
- package/src/tool/baby-budget-planner/index.ts +10 -0
- package/src/tool/baby-budget-planner/logic.ts +68 -0
- package/src/tool/baby-budget-planner/seo.astro +15 -0
- package/src/tool/baby-feeding-calculator/baby-feeding-calculator.css +40 -40
- package/src/tool/baby-feeding-calculator/bibliography.astro +9 -6
- package/src/tool/baby-feeding-calculator/seo.astro +2 -45
- package/src/tool/baby-percentile-calculator/baby-weight-height-percentile.css +43 -43
- package/src/tool/baby-percentile-calculator/seo.astro +7 -28
- package/src/tool/baby-size-converter/baby-size-converter.css +42 -42
- package/src/tool/baby-size-converter/seo.astro +7 -28
- package/src/tool/fertile-days-estimator/fertile-days-calculator.css +23 -23
- package/src/tool/fertile-days-estimator/seo.astro +7 -28
- package/src/tool/pregnancy-calculator/pregnancy-weeks-calculator.css +37 -37
- package/src/tool/pregnancy-calculator/seo.astro +7 -28
- package/src/tool/vaccination-calendar/baby-vaccination-calendar-spain.css +16 -16
- package/src/tool/vaccination-calendar/seo.astro +7 -28
- package/src/tools.ts +2 -0
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { BabyBudgetPlannerUI } from '../entry';
|
|
3
|
+
import type { FAQPage, HowTo, SoftwareApplication, WithContext } from 'schema-dts';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
export const title = 'Baby Budgetplaner';
|
|
7
|
+
export const description = 'Das ultimative Tool zur Planung der Ausgaben für das erste Jahr mit Ihrem Baby. Berechnen Sie die Erstausstattung, monatliche Kosten und versteckte Ausgaben mit Spartipps.';
|
|
8
|
+
|
|
9
|
+
export const faq = [
|
|
10
|
+
{
|
|
11
|
+
question: 'Wie viel kostet ein Baby im ersten Jahr?',
|
|
12
|
+
answer: 'Im Durchschnitt kann das erste Jahr zwischen 5.000 € und 15.000 € kosten, abhängig von Ihrem Lebensstil, der Form der Kinderbetreuung und davon, ob Sie Dinge neu oder gebraucht kaufen.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: 'Was sind die teuersten Anschaffungen für ein Neugeborenes?',
|
|
16
|
+
answer: 'Die größten Einmalkosten sind in der Regel der Kinderwagen, die Kinderzimmermöbel (Bett, Wickelkommode) und der Autositz. Die Kinderbetreuung ist die größte wiederkehrende monatliche Ausgabe.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: 'Wie kann ich bei den Baby-Ausgaben sparen?',
|
|
20
|
+
answer: 'Gebrauchtkauf von Ausstattung und Kleidung, Stillen (falls möglich) und das Erstellen einer Wunschliste für Geschenke von Freunden und Familie sind die effektivsten Strategien.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'Was sind "Geisterausgaben" bei der Babyplanung?',
|
|
24
|
+
answer: 'Dies sind versteckte Kosten wie steigende Nebenkosten (Heizung/Kühlung), höhere Beiträge zur Familienversicherung sowie nicht obligatorische Impfungen oder medizinischer Bedarf, der oft nicht auf Standard-Checklisten steht.',
|
|
25
|
+
},
|
|
26
|
+
];
|
|
27
|
+
|
|
28
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
29
|
+
'@context': 'https://schema.org',
|
|
30
|
+
'@type': 'FAQPage',
|
|
31
|
+
mainEntity: faq.map((item) => ({
|
|
32
|
+
'@type': 'Question',
|
|
33
|
+
name: item.question,
|
|
34
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
35
|
+
})),
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export const howTo = [
|
|
39
|
+
{
|
|
40
|
+
name: 'Profil konfigurieren',
|
|
41
|
+
text: 'Wählen Sie Ihren Lebensstil (Sparen, Ausgewogen oder Premium), die Ernährungsmethode und die Kinderbetreuungsstrategie.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Artikel prüfen',
|
|
45
|
+
text: 'Gehen Sie die Kategorien (Erstausstattung, Monatlich und Meilensteine) durch und passen Sie Preise an oder markieren Sie Dinge als gebraucht.',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Budget im Blick behalten',
|
|
49
|
+
text: 'Sehen Sie den Gesamtbedarf für das erste Jahr und verfolgen Sie Ihren Fortschritt beim Kauf der Artikel.',
|
|
50
|
+
},
|
|
51
|
+
];
|
|
52
|
+
|
|
53
|
+
const howToSchema: WithContext<HowTo> = {
|
|
54
|
+
'@context': 'https://schema.org',
|
|
55
|
+
'@type': 'HowTo',
|
|
56
|
+
name: title,
|
|
57
|
+
description,
|
|
58
|
+
step: howTo.map((step) => ({
|
|
59
|
+
'@type': 'HowToStep',
|
|
60
|
+
name: step.name,
|
|
61
|
+
text: step.text,
|
|
62
|
+
})),
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
66
|
+
'@context': 'https://schema.org',
|
|
67
|
+
'@type': 'SoftwareApplication',
|
|
68
|
+
name: title,
|
|
69
|
+
operatingSystem: 'Any',
|
|
70
|
+
applicationCategory: 'FinanceApplication',
|
|
71
|
+
offers: {
|
|
72
|
+
'@type': 'Offer',
|
|
73
|
+
price: '0',
|
|
74
|
+
priceCurrency: 'EUR',
|
|
75
|
+
},
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
export const content: ToolLocaleContent<BabyBudgetPlannerUI> = {
|
|
79
|
+
title,
|
|
80
|
+
description,
|
|
81
|
+
slug: 'baby-budget-planer',
|
|
82
|
+
faqTitle: 'Häufig gestellte Fragen',
|
|
83
|
+
bibliographyTitle: 'Bibliografie',
|
|
84
|
+
seo: [
|
|
85
|
+
{ type: 'summary', title: 'Zusammenfassung: Baby Budgetierung', items: [
|
|
86
|
+
'Das erste Jahr kann zwischen 5.000 € und 15.000 € kosten.',
|
|
87
|
+
'Einmalige Startkosten (Zimmer, Kinderwagen) sind die größte Hürde zu Beginn.',
|
|
88
|
+
'Kinderbetreuung kann bis zu 50% des monatlichen Budgets ausmachen.',
|
|
89
|
+
'Gebrauchte Artikel können das Gesamtbudget um bis zu 60% senken.',
|
|
90
|
+
]},
|
|
91
|
+
{ type: 'title', text: 'Was kostet ein Baby wirklich im ersten Jahr?', level: 2 },
|
|
92
|
+
{ type: 'paragraph', html: 'Die Planung für ein Baby umfasst mehr als nur den Kauf von Windeln. Es erfordert einen strategischen Blick auf Einmalinvestitionen im Vergleich zu monatlich wiederkehrenden Kosten. Unser Planer hilft Ihnen, diese Kurve zu visualisieren und sich auf den finanziellen Übergang zur Elternschaft vorzubereiten.' },
|
|
93
|
+
{ type: 'stats', columns: 3, items: [
|
|
94
|
+
{ value: '2.000 €+', label: 'Erstausstattung' },
|
|
95
|
+
{ value: '100-150 €', label: 'Windeln/Pflege monatlich' },
|
|
96
|
+
{ value: '40%+', label: 'Ersparnis durch Second Hand' },
|
|
97
|
+
]},
|
|
98
|
+
{ type: 'title', text: 'Kategorien-Übersicht: Wohin fließt das Geld?', level: 3 },
|
|
99
|
+
{ type: 'table', headers: ['Kategorie', 'Typische Artikel', 'Häufigkeit', 'Kostenfaktor'], rows: [
|
|
100
|
+
['Erstausstattung', 'Bett, Kinderwagen, Autositz', 'Einmalig', 'Hoch'],
|
|
101
|
+
['Monatlich', 'Windeln, Nahrung, Apotheke', 'Jeden Monat', 'Mittel'],
|
|
102
|
+
['Meilensteine', 'Hochstuhl, Beikost, Kleidung', 'Gelegentlich', 'Mittel'],
|
|
103
|
+
['Betreuung', 'Kita / Tagesmutter', 'Jeden Monat', 'Sehr hoch'],
|
|
104
|
+
]},
|
|
105
|
+
{ type: 'tip', html: '<strong>Profi-Spartipp:</strong> Hochwertige Kinderwagen und Kindermöbel haben einen exzellenten Wiederverkaufswert. Der Gebrauchtkauf kann Ihnen Tausende Euro sparen, ohne Abstriche bei Sicherheit oder Stil zu machen.' },
|
|
106
|
+
{ type: 'title', text: 'Lebensstil-Vergleich', level: 3 },
|
|
107
|
+
{ type: 'comparative', columns: 2, items: [
|
|
108
|
+
{
|
|
109
|
+
title: 'Sparfokus',
|
|
110
|
+
description: 'Fokus auf Gebrauchtes und das Wesentliche.',
|
|
111
|
+
points: ['Geliehene Kleidung', 'Überholte Ausstattung', 'Still-Fokus', 'Öffentliche Betreuung']
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
title: 'Premium',
|
|
115
|
+
description: 'Neueste Modelle und maximaler Komfort.',
|
|
116
|
+
points: ['Smart-Tech Ausstattung', 'Bio-Nahrung', 'Designer-Kinderzimmer', 'Private 1-zu-1 Betreuung']
|
|
117
|
+
},
|
|
118
|
+
]},
|
|
119
|
+
{ type: 'title', text: 'Checkliste für intelligente Planung', level: 3 },
|
|
120
|
+
{ type: 'list', items: [
|
|
121
|
+
'Prüfen Sie Upgrades der Familienversicherung.',
|
|
122
|
+
'Planen Sie Budget für nicht-obligatorische Impfungen und Apothekenbedarf ein.',
|
|
123
|
+
'Rechnen Sie mit 20% höheren Nebenkosten (Heizung/Strom).',
|
|
124
|
+
'Erstellen Sie frühzeitig eine Wunschliste für Freunde und Verwandte.',
|
|
125
|
+
]},
|
|
126
|
+
],
|
|
127
|
+
faq,
|
|
128
|
+
howTo,
|
|
129
|
+
bibliography,
|
|
130
|
+
schemas: [faqSchema as any, howToSchema as any, appSchema as any],
|
|
131
|
+
ui: {
|
|
132
|
+
title,
|
|
133
|
+
onboardingTitle: 'Planung starten',
|
|
134
|
+
lifestyleLabel: 'Lebensstil-Wahl',
|
|
135
|
+
lifestyleSaving: 'Maximal Sparen',
|
|
136
|
+
lifestyleBalanced: 'Ausgewogen',
|
|
137
|
+
lifestylePremium: 'Premium',
|
|
138
|
+
feedingLabel: 'Ernährung',
|
|
139
|
+
feedingBreast: 'Stillen',
|
|
140
|
+
feedingFormula: 'Fläschchen',
|
|
141
|
+
feedingMixed: 'Gemischt',
|
|
142
|
+
childcareLabel: 'Betreuung',
|
|
143
|
+
childcareHome: 'Zu Hause bleiben',
|
|
144
|
+
childcarePublic: 'Öffentliche Kita',
|
|
145
|
+
childcarePrivate: 'Private Betreuung',
|
|
146
|
+
startBtn: 'Budget generieren',
|
|
147
|
+
categoryBeforeBirth: 'Erstausstattung',
|
|
148
|
+
categoryMonthByMonth: 'Monatliche Kosten',
|
|
149
|
+
categoryMilestones: 'Kommende Meilensteine',
|
|
150
|
+
totalNeededLabel: 'Gesamtziel 1. Jahr',
|
|
151
|
+
savingsProgressLabel: 'Bereit / Gespart',
|
|
152
|
+
chartTitle: 'Monatliche Ausgabenkurve',
|
|
153
|
+
ghostAlertsTitle: 'Geisterausgaben-Warnungen',
|
|
154
|
+
ghostInsurance: 'Versicherungs-Check',
|
|
155
|
+
ghostHeating: '+20% Heizung/Strom einplanen',
|
|
156
|
+
ghostVaccines: 'Budget für Zusatzimpfungen',
|
|
157
|
+
diaperCalcTitle: 'Windel-Preischeck',
|
|
158
|
+
diaperPriceLabel: 'Paketpreis',
|
|
159
|
+
diaperUnitsLabel: 'Stück pro Paket',
|
|
160
|
+
secondHandLabel: 'Gebraucht / Geschenk',
|
|
161
|
+
wishlistLabel: 'Auf Wunschliste',
|
|
162
|
+
itemNursery: 'Kinderzimmer-Vorbereitung',
|
|
163
|
+
itemStroller: 'Kinderwagen & Reisesystem',
|
|
164
|
+
itemHospitalBag: 'Kliniktasche Basics',
|
|
165
|
+
itemDiapers: 'Windeln & Feuchttücher',
|
|
166
|
+
itemPharmacy: 'Apotheke & Hygiene',
|
|
167
|
+
itemDaycare: 'Kita / Betreuung',
|
|
168
|
+
itemSolidFood: 'Beikost-Einführung',
|
|
169
|
+
itemClothes: 'Saisonale Kleidung',
|
|
170
|
+
itemHighChair: 'Hochstuhl & Esslernset',
|
|
171
|
+
editLabel: 'Preis bearbeiten',
|
|
172
|
+
saveBtn: 'Speichern',
|
|
173
|
+
exportBtn: 'JSON Export',
|
|
174
|
+
importBtn: 'JSON Import',
|
|
175
|
+
resetBtn: 'Plan zurücksetzen',
|
|
176
|
+
currencySymbol: '€',
|
|
177
|
+
monthPrefix: 'M',
|
|
178
|
+
initialMonthLabel: 'Start',
|
|
179
|
+
perMonthLabel: '/Monat',
|
|
180
|
+
confirmReset: 'Sind Sie sicher?',
|
|
181
|
+
},
|
|
182
|
+
};
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { BabyBudgetPlannerUI } from '../entry';
|
|
3
|
+
import type { FAQPage, HowTo, SoftwareApplication, WithContext } from 'schema-dts';
|
|
4
|
+
|
|
5
|
+
import { bibliography } from '../bibliography';
|
|
6
|
+
|
|
7
|
+
export const title = 'Ultimate Baby Budget Planner';
|
|
8
|
+
export const description = 'The definitive tool to plan your baby\'s first year expenses. Calculate nursery setup, monthly costs, and hidden expenses with smart saving tips.';
|
|
9
|
+
|
|
10
|
+
export const faq = [
|
|
11
|
+
{
|
|
12
|
+
question: 'How much does a baby cost in the first year?',
|
|
13
|
+
answer: 'On average, the first year can cost between $5,000 and $15,000 depending on your lifestyle choices, childcare needs, and whether you buy new or second hand items.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'What are the most expensive items for a newborn?',
|
|
17
|
+
answer: 'The biggest one-time costs are typically the stroller, nursery furniture (crib, dresser), and car seat. Childcare is the largest recurring monthly expense.',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
question: 'How can I save on baby expenses?',
|
|
21
|
+
answer: 'Buying second hand for gear and clothes, breastfeeding if possible, and using a registry to help friends and family gift you essential items are the most effective strategies.',
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
question: 'What are "Ghost Expenses" in baby planning?',
|
|
25
|
+
answer: 'These are hidden costs like increased utility bills (heating/cooling), higher family insurance premiums, and non-mandatory vaccines or medical supplies that aren\'t usually on standard checklists.',
|
|
26
|
+
},
|
|
27
|
+
];
|
|
28
|
+
|
|
29
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
30
|
+
'@context': 'https://schema.org',
|
|
31
|
+
'@type': 'FAQPage',
|
|
32
|
+
mainEntity: faq.map((item) => ({
|
|
33
|
+
'@type': 'Question',
|
|
34
|
+
name: item.question,
|
|
35
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
36
|
+
})),
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
export const howTo = [
|
|
40
|
+
{
|
|
41
|
+
name: 'Configure your profile',
|
|
42
|
+
text: 'Select your lifestyle (Saving, Balanced, or Premium), feeding method, and childcare strategy.',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
name: 'Review your items',
|
|
46
|
+
text: 'Go through the categories (Before Birth, Monthly, and Milestones) and adjust prices or mark items as second hand.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
name: 'Track your budget',
|
|
50
|
+
text: 'See your total needed for the first year and monitor your progress as you acquire items.',
|
|
51
|
+
},
|
|
52
|
+
];
|
|
53
|
+
|
|
54
|
+
const howToSchema: WithContext<HowTo> = {
|
|
55
|
+
'@context': 'https://schema.org',
|
|
56
|
+
'@type': 'HowTo',
|
|
57
|
+
name: title,
|
|
58
|
+
description,
|
|
59
|
+
step: howTo.map((step) => ({
|
|
60
|
+
'@type': 'HowToStep',
|
|
61
|
+
name: step.name,
|
|
62
|
+
text: step.text,
|
|
63
|
+
})),
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
67
|
+
'@context': 'https://schema.org',
|
|
68
|
+
'@type': 'SoftwareApplication',
|
|
69
|
+
name: title,
|
|
70
|
+
operatingSystem: 'Any',
|
|
71
|
+
applicationCategory: 'FinanceApplication',
|
|
72
|
+
offers: {
|
|
73
|
+
'@type': 'Offer',
|
|
74
|
+
price: '0',
|
|
75
|
+
priceCurrency: 'USD',
|
|
76
|
+
},
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
export const content: ToolLocaleContent<BabyBudgetPlannerUI> = {
|
|
80
|
+
title,
|
|
81
|
+
description,
|
|
82
|
+
slug: 'baby-budget-planner',
|
|
83
|
+
faqTitle: 'Frequently Asked Questions',
|
|
84
|
+
bibliographyTitle: 'Bibliography',
|
|
85
|
+
seo: [
|
|
86
|
+
{ type: 'summary', title: 'Summary: Baby Budgeting', items: [
|
|
87
|
+
'The first year can cost between $5,000 and $15,000.',
|
|
88
|
+
'One-time startup costs (nursery, stroller) are the largest initial hurdle.',
|
|
89
|
+
'Childcare can represent up to 50% of the recurring monthly budget.',
|
|
90
|
+
'Second hand items can reduce the total budget by up to 60%.',
|
|
91
|
+
]},
|
|
92
|
+
{ type: 'title', text: 'How much does a baby really cost in the first year?', level: 2 },
|
|
93
|
+
{ type: 'paragraph', html: 'Planning for a baby involves more than just buying diapers. It requires a strategic look at one-time investments versus recurring monthly costs. Our planner helps you visualize this curve and prepare for the financial transition into parenthood.' },
|
|
94
|
+
{ type: 'stats', columns: 3, items: [
|
|
95
|
+
{ value: '$2,000+', label: 'Initial Gear Setup' },
|
|
96
|
+
{ value: '$100-150', label: 'Monthly Diapers/Pharmacy' },
|
|
97
|
+
{ value: '40%+', label: 'Savings with 2nd Hand' },
|
|
98
|
+
]},
|
|
99
|
+
{ type: 'title', text: 'Category Breakdown: Where the Money Goes', level: 3 },
|
|
100
|
+
{ type: 'table', headers: ['Category', 'Typical Items', 'Frequency', 'Cost Impact'], rows: [
|
|
101
|
+
['Before Birth', 'Crib, Stroller, Car Seat', 'One-time', 'High'],
|
|
102
|
+
['Monthly', 'Diapers, Formula, Pharmacy', 'Every month', 'Medium'],
|
|
103
|
+
['Milestones', 'High Chair, Solid Food, Clothes', 'Occasional', 'Medium'],
|
|
104
|
+
['Conciliation', 'Daycare / Childcare', 'Every month', 'Very High'],
|
|
105
|
+
]},
|
|
106
|
+
{ type: 'tip', html: '<strong>Pro Saving Tip:</strong> High-quality strollers and nursery furniture have excellent resale value. Buying these second hand can save you thousands of dollars without compromising on safety or style.' },
|
|
107
|
+
{ type: 'title', text: 'Lifestyle Comparison', level: 3 },
|
|
108
|
+
{ type: 'comparative', columns: 2, items: [
|
|
109
|
+
{
|
|
110
|
+
title: 'Total Saving',
|
|
111
|
+
description: 'Focus on second hand and essentials.',
|
|
112
|
+
points: ['Hand-me-down clothes', 'Refurbished gear', 'Breastfeeding focus', 'Public conciliation']
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
title: 'Premium',
|
|
116
|
+
description: 'Newest models and maximum convenience.',
|
|
117
|
+
points: ['Latest tech gear', 'Organic formula', 'Designer nursery', 'Private 1-on-1 care']
|
|
118
|
+
},
|
|
119
|
+
]},
|
|
120
|
+
{ type: 'title', text: 'Smart Planning Checklist', level: 3 },
|
|
121
|
+
{ type: 'list', items: [
|
|
122
|
+
'Check life and health insurance family coverage updates.',
|
|
123
|
+
'Budget for non-mandatory vaccines and specialized pharmacy items.',
|
|
124
|
+
'Anticipate a 20% increase in home utility bills (heating/cooling).',
|
|
125
|
+
'Create a registry early to let family help with large items.',
|
|
126
|
+
]},
|
|
127
|
+
],
|
|
128
|
+
faq,
|
|
129
|
+
howTo,
|
|
130
|
+
bibliography,
|
|
131
|
+
schemas: [faqSchema as any, howToSchema as any, appSchema as any],
|
|
132
|
+
ui: {
|
|
133
|
+
title,
|
|
134
|
+
onboardingTitle: 'Start Your Plan',
|
|
135
|
+
lifestyleLabel: 'Lifestyle Choice',
|
|
136
|
+
lifestyleSaving: 'Total Saving',
|
|
137
|
+
lifestyleBalanced: 'Balanced',
|
|
138
|
+
lifestylePremium: 'Premium',
|
|
139
|
+
feedingLabel: 'Feeding Method',
|
|
140
|
+
feedingBreast: 'Breastfeeding',
|
|
141
|
+
feedingFormula: 'Formula',
|
|
142
|
+
feedingMixed: 'Mixed',
|
|
143
|
+
childcareLabel: 'Childcare Strategy',
|
|
144
|
+
childcareHome: 'Stay at Home',
|
|
145
|
+
childcarePublic: 'Public Daycare',
|
|
146
|
+
childcarePrivate: 'Private Daycare',
|
|
147
|
+
startBtn: 'Generate My Budget',
|
|
148
|
+
categoryBeforeBirth: 'Before Baby Arrives',
|
|
149
|
+
categoryMonthByMonth: 'Monthly Recurring',
|
|
150
|
+
categoryMilestones: 'Coming Milestones',
|
|
151
|
+
totalNeededLabel: 'Total First Year Goal',
|
|
152
|
+
savingsProgressLabel: 'Ready / Saved',
|
|
153
|
+
chartTitle: 'Monthly Spending Curve',
|
|
154
|
+
ghostAlertsTitle: 'Ghost Expense Alerts',
|
|
155
|
+
ghostInsurance: 'Check Life/Health Insurance',
|
|
156
|
+
ghostHeating: 'Anticipate +20% Heating/AC',
|
|
157
|
+
ghostVaccines: 'Non-mandatory Vaccines Budget',
|
|
158
|
+
diaperCalcTitle: 'Diaper Price Check',
|
|
159
|
+
diaperPriceLabel: 'Pack Price',
|
|
160
|
+
diaperUnitsLabel: 'Units per Pack',
|
|
161
|
+
secondHandLabel: 'Second hand / Gift',
|
|
162
|
+
wishlistLabel: 'On Wishlist',
|
|
163
|
+
itemNursery: 'Nursery Room Prep',
|
|
164
|
+
itemStroller: 'Stroller & Travel System',
|
|
165
|
+
itemHospitalBag: 'Hospital Bag Essentials',
|
|
166
|
+
itemDiapers: 'Diapers & Wipes',
|
|
167
|
+
itemPharmacy: 'Pharmacy & Hygiene',
|
|
168
|
+
itemDaycare: 'Daycare / Childcare',
|
|
169
|
+
itemSolidFood: 'Solid Food Transition',
|
|
170
|
+
itemClothes: 'Seasonal Clothing',
|
|
171
|
+
itemHighChair: 'High Chair & Feeding Gear',
|
|
172
|
+
editLabel: 'Edit Price',
|
|
173
|
+
saveBtn: 'Save',
|
|
174
|
+
exportBtn: 'Export JSON',
|
|
175
|
+
importBtn: 'Import JSON',
|
|
176
|
+
resetBtn: 'Reset Plan',
|
|
177
|
+
currencySymbol: '$',
|
|
178
|
+
monthPrefix: 'M',
|
|
179
|
+
initialMonthLabel: 'Start',
|
|
180
|
+
perMonthLabel: '/month',
|
|
181
|
+
confirmReset: 'Are you sure?',
|
|
182
|
+
currencyMultiplier: 1,
|
|
183
|
+
},
|
|
184
|
+
};
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { BabyBudgetPlannerUI } from '../entry';
|
|
3
|
+
import type { FAQPage, HowTo, SoftwareApplication, WithContext } from 'schema-dts';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
export const title = 'Calculadora de Presupuesto para Bebés';
|
|
7
|
+
export const description = 'La herramienta definitiva para planificar los gastos del primer año de tu bebé. Calcula el montaje de la habitación, costes mensuales y gastos ocultos con consejos de ahorro.';
|
|
8
|
+
|
|
9
|
+
export const faq = [
|
|
10
|
+
{
|
|
11
|
+
question: '¿Cuánto cuesta un bebé el primer año?',
|
|
12
|
+
answer: 'De media, el primer año puede costar entre 5.000 € y 15.000 € dependiendo de tu estilo de vida, necesidades de conciliación y de si compras artículos nuevos o de segunda mano.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: '¿Cuáles son los artículos más caros para un recién nacido?',
|
|
16
|
+
answer: 'Los gastos iniciales más grandes suelen ser el cochecito, los muebles de la habitación (cuna, cómoda) y la silla de coche. El cuidado infantil es el gasto mensual recurrente más elevado.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: '¿Cómo puedo ahorrar en los gastos del bebé?',
|
|
20
|
+
answer: 'Comprar artículos de segunda mano para equipamiento y ropa, optar por la lactancia materna si es posible y usar una lista de nacimiento para que amigos y familiares te regalen lo esencial son las estrategias más efectivas.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: '¿Qué son los "Gastos Fantasma" en la planificación del bebé?',
|
|
24
|
+
answer: 'Son costes ocultos como el aumento en las facturas de suministros (calefacción/aire acondicionado), primas de seguros familiares más altas y vacunas no obligatorias o suministros médicos que no suelen estar en las listas estándar.',
|
|
25
|
+
},
|
|
26
|
+
];
|
|
27
|
+
|
|
28
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
29
|
+
'@context': 'https://schema.org',
|
|
30
|
+
'@type': 'FAQPage',
|
|
31
|
+
mainEntity: faq.map((item) => ({
|
|
32
|
+
'@type': 'Question',
|
|
33
|
+
name: item.question,
|
|
34
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
35
|
+
})),
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export const howTo = [
|
|
39
|
+
{
|
|
40
|
+
name: 'Configura tu perfil',
|
|
41
|
+
text: 'Selecciona tu estilo de vida (Ahorro, Equilibrado o Premium), método de alimentación y estrategia de cuidado infantil.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Revisa tus artículos',
|
|
45
|
+
text: 'Recorre las categorías (Inversión inicial, Gastos mensuales y Próximos hitos) y ajusta precios o marca artículos como de segunda mano.',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Sigue tu presupuesto',
|
|
49
|
+
text: 'Visualiza el total necesario para el primer año y monitoriza tu progreso a medida que adquieres los artículos.',
|
|
50
|
+
},
|
|
51
|
+
];
|
|
52
|
+
|
|
53
|
+
const howToSchema: WithContext<HowTo> = {
|
|
54
|
+
'@context': 'https://schema.org',
|
|
55
|
+
'@type': 'HowTo',
|
|
56
|
+
name: title,
|
|
57
|
+
description,
|
|
58
|
+
step: howTo.map((step) => ({
|
|
59
|
+
'@type': 'HowToStep',
|
|
60
|
+
name: step.name,
|
|
61
|
+
text: step.text,
|
|
62
|
+
})),
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
66
|
+
'@context': 'https://schema.org',
|
|
67
|
+
'@type': 'SoftwareApplication',
|
|
68
|
+
name: title,
|
|
69
|
+
operatingSystem: 'Any',
|
|
70
|
+
applicationCategory: 'FinanceApplication',
|
|
71
|
+
offers: {
|
|
72
|
+
'@type': 'Offer',
|
|
73
|
+
price: '0',
|
|
74
|
+
priceCurrency: 'EUR',
|
|
75
|
+
},
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
export const content: ToolLocaleContent<BabyBudgetPlannerUI> = {
|
|
79
|
+
title,
|
|
80
|
+
description,
|
|
81
|
+
slug: 'presupuesto-primer-ano-bebe',
|
|
82
|
+
faqTitle: 'Preguntas Frecuentes',
|
|
83
|
+
bibliographyTitle: 'Bibliografía',
|
|
84
|
+
seo: [
|
|
85
|
+
{ type: 'summary', title: 'Resumen: Presupuesto del Bebé', items: [
|
|
86
|
+
'El primer año puede costar entre 5.000 € y 15.000 €.',
|
|
87
|
+
'La inversión inicial (habitación, cochecito) es el mayor obstáculo inicial.',
|
|
88
|
+
'El cuidado infantil puede representar hasta el 50% del presupuesto mensual.',
|
|
89
|
+
'Los artículos de segunda mano pueden reducir el presupuesto total hasta un 60%.',
|
|
90
|
+
]},
|
|
91
|
+
{ type: 'title', text: '¿Cuánto cuesta realmente tener un bebé el primer año?', level: 2 },
|
|
92
|
+
{ type: 'paragraph', html: 'Planificar la llegada de un bebé implica mucho más que comprar pañales. Requiere una mirada estratégica a las inversiones puntuales frente a los costes mensuales recurrentes. Nuestro planificador te ayuda a visualizar esta curva y prepararte para la transición financiera a la paternidad.' },
|
|
93
|
+
{ type: 'stats', columns: 3, items: [
|
|
94
|
+
{ value: '2.000 €+', label: 'Equipamiento Inicial' },
|
|
95
|
+
{ value: '100-150 €', label: 'Pañales/Farmacia Mensual' },
|
|
96
|
+
{ value: '40%+', label: 'Ahorro con 2ª Mano' },
|
|
97
|
+
]},
|
|
98
|
+
{ type: 'title', text: 'Desglose por Categorías: ¿A dónde va el dinero?', level: 3 },
|
|
99
|
+
{ type: 'table', headers: ['Categoría', 'Artículos Típicos', 'Frecuencia', 'Impacto en Coste'], rows: [
|
|
100
|
+
['Inversión Inicial', 'Cuna, Cochecito, Silla Coche', 'Puntual', 'Alto'],
|
|
101
|
+
['Gastos Mensuales', 'Pañales, Leche, Farmacia', 'Mensual', 'Medio'],
|
|
102
|
+
['Próximos Hitos', 'Trona, Comida Sólida, Ropa', 'Ocasional', 'Medio'],
|
|
103
|
+
['Conciliación', 'Guardería / Cuidado', 'Mensual', 'Muy Alto'],
|
|
104
|
+
]},
|
|
105
|
+
{ type: 'tip', html: '<strong>Consejo de Ahorro:</strong> Los cochecitos de alta calidad y los muebles de la habitación tienen un excelente valor de reventa. Comprar estos artículos de segunda mano puede ahorrarte miles de euros sin comprometer la seguridad o el estilo.' },
|
|
106
|
+
{ type: 'title', text: 'Comparativa de Estilos de Vida', level: 3 },
|
|
107
|
+
{ type: 'comparative', columns: 2, items: [
|
|
108
|
+
{
|
|
109
|
+
title: 'Ahorro Total',
|
|
110
|
+
description: 'Enfoque en esenciales y segunda mano.',
|
|
111
|
+
points: ['Ropa heredada', 'Equipamiento reacondicionado', 'Fomento lactancia materna', 'Conciliación pública']
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
title: 'Premium',
|
|
115
|
+
description: 'Últimos modelos y máxima comodidad.',
|
|
116
|
+
points: ['Equipamiento tecnológico', 'Leche orgánica', 'Habitación de diseño', 'Cuidado privado 1 a 1']
|
|
117
|
+
},
|
|
118
|
+
]},
|
|
119
|
+
{ type: 'title', text: 'Checklist de Planificación Inteligente', level: 3 },
|
|
120
|
+
{ type: 'list', items: [
|
|
121
|
+
'Revisa las actualizaciones de cobertura familiar de tus seguros.',
|
|
122
|
+
'Presupuesta vacunas no obligatorias y artículos de farmacia especializada.',
|
|
123
|
+
'Anticipa un aumento del 20% en las facturas de suministros del hogar.',
|
|
124
|
+
'Crea una lista de nacimiento pronto para que la familia ayude con compras grandes.',
|
|
125
|
+
]},
|
|
126
|
+
],
|
|
127
|
+
faq,
|
|
128
|
+
howTo,
|
|
129
|
+
bibliography,
|
|
130
|
+
schemas: [faqSchema as any, howToSchema as any, appSchema as any],
|
|
131
|
+
ui: {
|
|
132
|
+
title,
|
|
133
|
+
onboardingTitle: 'Crea tu Plan',
|
|
134
|
+
lifestyleLabel: 'Estilo de Vida',
|
|
135
|
+
lifestyleSaving: 'Ahorro Total',
|
|
136
|
+
lifestyleBalanced: 'Equilibrado',
|
|
137
|
+
lifestylePremium: 'Premium',
|
|
138
|
+
feedingLabel: 'Método Alimentación',
|
|
139
|
+
feedingBreast: 'Lactancia Materna',
|
|
140
|
+
feedingFormula: 'Leche de Fórmula',
|
|
141
|
+
feedingMixed: 'Lactancia Mixta',
|
|
142
|
+
childcareLabel: 'Estrategia de Cuidado',
|
|
143
|
+
childcareHome: 'Cuidado en Casa',
|
|
144
|
+
childcarePublic: 'Guardería Pública',
|
|
145
|
+
childcarePrivate: 'Guardería Privada',
|
|
146
|
+
startBtn: 'Generar mi Presupuesto',
|
|
147
|
+
categoryBeforeBirth: 'Inversión Inicial',
|
|
148
|
+
categoryMonthByMonth: 'Gastos Mensuales',
|
|
149
|
+
categoryMilestones: 'Próximos Hitos',
|
|
150
|
+
totalNeededLabel: 'Objetivo Total Primer Año',
|
|
151
|
+
savingsProgressLabel: 'Listo / Ahorrado',
|
|
152
|
+
chartTitle: 'Curva de Gasto Mensual',
|
|
153
|
+
ghostAlertsTitle: 'Alertas de Gastos Fantasma',
|
|
154
|
+
ghostInsurance: 'Revisar Seguros Vida/Salud',
|
|
155
|
+
ghostHeating: 'Prever +20% en Calefacción/AA',
|
|
156
|
+
ghostVaccines: 'Presupuesto Vacunas No Obligatorias',
|
|
157
|
+
diaperCalcTitle: 'Control de Precio Pañales',
|
|
158
|
+
diaperPriceLabel: 'Precio Paquete',
|
|
159
|
+
diaperUnitsLabel: 'Unidades por Paquete',
|
|
160
|
+
secondHandLabel: '2ª Mano / Regalo',
|
|
161
|
+
wishlistLabel: 'En la Lista',
|
|
162
|
+
itemNursery: 'Montaje Habitación',
|
|
163
|
+
itemStroller: 'Cochecito y Silla Paseo',
|
|
164
|
+
itemHospitalBag: 'Bolsa del Hospital',
|
|
165
|
+
itemDiapers: 'Pañales y Toallitas',
|
|
166
|
+
itemPharmacy: 'Farmacia e Higiene',
|
|
167
|
+
itemDaycare: 'Guardería / Conciliación',
|
|
168
|
+
itemSolidFood: 'Transición Comida Sólida',
|
|
169
|
+
itemClothes: 'Ropa de Temporada',
|
|
170
|
+
itemHighChair: 'Trona y Vajilla',
|
|
171
|
+
editLabel: 'Editar Precio',
|
|
172
|
+
saveBtn: 'Guardar',
|
|
173
|
+
exportBtn: 'Exportar JSON',
|
|
174
|
+
importBtn: 'Importar JSON',
|
|
175
|
+
resetBtn: 'Reiniciar Plan',
|
|
176
|
+
currencySymbol: '€',
|
|
177
|
+
monthPrefix: 'M',
|
|
178
|
+
initialMonthLabel: 'Inicio',
|
|
179
|
+
perMonthLabel: '/mes',
|
|
180
|
+
confirmReset: '¿Estás seguro?',
|
|
181
|
+
currencyMultiplier: 1,
|
|
182
|
+
},
|
|
183
|
+
};
|