@jjlmoya/utils-babies 1.14.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/bibliography.astro +9 -6
- package/src/tool/baby-feeding-calculator/seo.astro +2 -45
- package/src/tool/baby-percentile-calculator/seo.astro +7 -28
- package/src/tool/baby-size-converter/seo.astro +7 -28
- package/src/tool/fertile-days-estimator/seo.astro +7 -28
- package/src/tool/pregnancy-calculator/seo.astro +7 -28
- package/src/tool/vaccination-calendar/seo.astro +7 -28
- package/src/tools.ts +2 -0
|
@@ -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 = '赤ちゃん予算シミュレーター';
|
|
7
|
+
export const description = '赤ちゃんの最初の1年間の支出を計画するための決定版ツール。ベビー用品の準備、毎月のコスト、隠れた支出を賢い節約術とともに計算します。';
|
|
8
|
+
|
|
9
|
+
export const faq = [
|
|
10
|
+
{
|
|
11
|
+
question: '赤ちゃんの最初の1年間にいくらかかりますか?',
|
|
12
|
+
answer: 'ライフスタイルや保育の必要性、新品か中古品かによって異なりますが、平均して50万円から150万円ほどかかると言われています。',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: '新生児向けで最も高価なアイテムは何ですか?',
|
|
16
|
+
answer: '一般的に、ベビーカー、ベビー家具(ベビーベッド、チェスト)、チャイルドシートが大きな一時的支出となります。保育料は、毎月の継続的な支出の中で最も高額になります。',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: '赤ちゃんの支出を節約するにはどうすればよいですか?',
|
|
20
|
+
answer: '備品や衣類を中古で購入したり、可能であれば母乳育児を選択したり、出産祝いのリストを活用して親戚や友人から必要なものを贈ってもらうのが最も効果的な戦略です。',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'ベビー予算における「ゴースト支出」とは何ですか?',
|
|
24
|
+
answer: '光熱費(冷暖房)の増加、家族保険料の増額、任意接種のワクチン代、標準的なリストには載っていない衛生用品などの隠れたコストのことです。',
|
|
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: 'プロフィールを設定',
|
|
41
|
+
text: 'ライフスタイル(節約、バランス、プレミアム)、授乳方法、保育戦略を選択します。',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'アイテムを確認',
|
|
45
|
+
text: 'カテゴリー(初期投資、月額コスト、節目)を確認し、価格を調整したり、中古品としてチェックを入れたりします。',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: '予算を管理',
|
|
49
|
+
text: '1年間に必要な総額を確認し、アイテムを揃えていく際の実績を把握します。',
|
|
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: 'JPY',
|
|
75
|
+
},
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
export const content: ToolLocaleContent<BabyBudgetPlannerUI> = {
|
|
79
|
+
title,
|
|
80
|
+
description,
|
|
81
|
+
slug: 'baby-budget-planner',
|
|
82
|
+
faqTitle: 'よくある質問',
|
|
83
|
+
bibliographyTitle: '参考文献',
|
|
84
|
+
seo: [
|
|
85
|
+
{ type: 'summary', title: 'まとめ:赤ちゃんの予算', items: [
|
|
86
|
+
'最初の1年間のコストは50万円から150万円程度です。',
|
|
87
|
+
'初期投資(ベビー部屋、ベビーカー)が最初の大きな壁となります。',
|
|
88
|
+
'保育料は毎月の予算の最大50%を占めることがあります。',
|
|
89
|
+
'中古品を活用することで、総予算を最大60%削減可能です。',
|
|
90
|
+
]},
|
|
91
|
+
{ type: 'title', text: '赤ちゃんの最初の1年間に、実際いくらかかるのか?', level: 2 },
|
|
92
|
+
{ type: 'paragraph', html: '赤ちゃんを迎える準備は、単におむつを買うだけではありません。一時的な投資と毎月の継続コストを戦略的に把握する必要があります。当シミュレーターは、支出曲線を可視化し、親としての経済的な変化に備えるお手伝いをします。' },
|
|
93
|
+
{ type: 'stats', columns: 3, items: [
|
|
94
|
+
{ value: '20万円〜', label: '初期備品セット' },
|
|
95
|
+
{ value: '1万〜1.5万円', label: '毎月のおむつ・衛生用品' },
|
|
96
|
+
{ value: '40%+', label: '中古活用による節約' },
|
|
97
|
+
]},
|
|
98
|
+
{ type: 'title', text: 'カテゴリー別内訳:お金はどこに消えるのか?', level: 3 },
|
|
99
|
+
{ type: 'table', headers: ['カテゴリー', '代表的なアイテム', '頻度', 'コストへの影響'], rows: [
|
|
100
|
+
['初期投資', 'ベビーベッド、ベビーカー、チャイルドシート', '単発', '高'],
|
|
101
|
+
['月額支出', 'おむつ、粉ミルク、衛生用品', '毎月', '中'],
|
|
102
|
+
['節目・成長', 'ハイチェア、離乳食用品、衣類', '随時', '中'],
|
|
103
|
+
['保育・教育', '保育園 / ベビーシッター', '毎月', '極めて高'],
|
|
104
|
+
]},
|
|
105
|
+
{ type: 'tip', html: '<strong>節約のプロのコツ:</strong> 高品質なベビーカーやベビー家具はリセールバリューが高いです。これらを中古で購入することで、安全性やスタイルを損なうことなく数万円を節約できます。' },
|
|
106
|
+
{ type: 'title', text: 'ライフスタイルの比較', level: 3 },
|
|
107
|
+
{ type: 'comparative', columns: 2, items: [
|
|
108
|
+
{
|
|
109
|
+
title: '節約重視',
|
|
110
|
+
description: '中古品と必需品にフォーカスします。',
|
|
111
|
+
points: ['お下がり衣類', '中古備品', '母乳育児メイン', '認可保育園']
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
title: 'プレミアム',
|
|
115
|
+
description: '最新モデルと最大限の利便性を追求します。',
|
|
116
|
+
points: ['ハイテク育児家電', 'オーガニック粉ミルク', 'デザイナーズ家具', '認可外・個別シッター']
|
|
117
|
+
},
|
|
118
|
+
]},
|
|
119
|
+
{ type: 'title', text: 'スマートな計画のためのチェックリスト', level: 3 },
|
|
120
|
+
{ type: 'list', items: [
|
|
121
|
+
'家族向け保険のカバー内容の更新を確認しましょう。',
|
|
122
|
+
'任意接種のワクチンや専門的な衛生用品の予算を確保しましょう。',
|
|
123
|
+
'光熱費(冷暖房)の20%程度の増加を予測しておきましょう。',
|
|
124
|
+
'大きな買い物は親戚や友人からのプレゼントとして相談できるよう、早めにリストを作りましょう。',
|
|
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: 'プランを作成',
|
|
134
|
+
lifestyleLabel: 'ライフスタイルの選択',
|
|
135
|
+
lifestyleSaving: '節約重視',
|
|
136
|
+
lifestyleBalanced: 'バランス',
|
|
137
|
+
lifestylePremium: 'プレミアム',
|
|
138
|
+
feedingLabel: '授乳方法',
|
|
139
|
+
feedingBreast: '母乳',
|
|
140
|
+
feedingFormula: '粉ミルク',
|
|
141
|
+
feedingMixed: '混合',
|
|
142
|
+
childcareLabel: '保育戦略',
|
|
143
|
+
childcareHome: '在宅(育休など)',
|
|
144
|
+
childcarePublic: '認可保育園',
|
|
145
|
+
childcarePrivate: '認可外・個別保育',
|
|
146
|
+
startBtn: '予算をシミュレーション',
|
|
147
|
+
categoryBeforeBirth: '初期投資',
|
|
148
|
+
categoryMonthByMonth: '毎月の支出',
|
|
149
|
+
categoryMilestones: '成長の節目',
|
|
150
|
+
totalNeededLabel: '最初の1年の目標総額',
|
|
151
|
+
savingsProgressLabel: '準備完了 / 貯蓄済',
|
|
152
|
+
chartTitle: '月別支出曲線',
|
|
153
|
+
ghostAlertsTitle: 'ゴースト支出のアラート',
|
|
154
|
+
ghostInsurance: '生命・医療保険の確認',
|
|
155
|
+
ghostHeating: '光熱費+20%の予測',
|
|
156
|
+
ghostVaccines: '任意接種ワクチンの予算',
|
|
157
|
+
diaperCalcTitle: 'おむつ価格チェック',
|
|
158
|
+
diaperPriceLabel: 'パック価格',
|
|
159
|
+
diaperUnitsLabel: 'パックあたりの枚数',
|
|
160
|
+
secondHandLabel: '中古 / プレゼント',
|
|
161
|
+
wishlistLabel: 'ほしい物リスト',
|
|
162
|
+
itemNursery: 'ベビー部屋の準備',
|
|
163
|
+
itemStroller: 'ベビーカーと移動用品',
|
|
164
|
+
itemHospitalBag: '入院バッグの必需品',
|
|
165
|
+
itemDiapers: 'おむつとおしりふき',
|
|
166
|
+
itemPharmacy: '衛生用品とケア用品',
|
|
167
|
+
itemDaycare: '保育料・シッター代',
|
|
168
|
+
itemSolidFood: '離乳食への移行準備',
|
|
169
|
+
itemClothes: '季節の衣類',
|
|
170
|
+
itemHighChair: 'ハイチェアと食器セット',
|
|
171
|
+
editLabel: '価格を編集',
|
|
172
|
+
saveBtn: '保存',
|
|
173
|
+
exportBtn: 'JSONエクスポート',
|
|
174
|
+
importBtn: 'JSONインポート',
|
|
175
|
+
resetBtn: 'プランをリセット',
|
|
176
|
+
currencySymbol: '円',
|
|
177
|
+
monthPrefix: 'M',
|
|
178
|
+
initialMonthLabel: '開始',
|
|
179
|
+
perMonthLabel: '/月',
|
|
180
|
+
confirmReset: 'よろしいですか?',
|
|
181
|
+
currencyMultiplier: 160,
|
|
182
|
+
},
|
|
183
|
+
};
|
|
@@ -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 = '아기 예산 시뮬레이터';
|
|
7
|
+
export const description = '아기의 첫 1년 지출을 계획하기 위한 필수 도구입니다. 육아용품 준비, 월간 비용, 숨겨진 지출을 스마트한 절약 팁과 함께 계산해 보세요.';
|
|
8
|
+
|
|
9
|
+
export const faq = [
|
|
10
|
+
{
|
|
11
|
+
question: '아기 첫 1년 비용은 얼마나 드나요?',
|
|
12
|
+
answer: '라이프스타일, 보육 필요성, 새 제품 또는 중고 제품 구매 여부에 따라 다르지만, 평균적으로 1,000만 원에서 3,000만 원 정도가 소요될 수 있습니다.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: '신생아를 위한 가장 비싼 품목은 무엇인가요?',
|
|
16
|
+
answer: '가장 큰 일회성 지출은 일반적으로 유모차, 아기방 가구(침대, 서랍장), 카시트입니다. 보육료는 매월 반복되는 지출 중 가장 비중이 큽니다.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: '육아 비용을 어떻게 절약할 수 있나요?',
|
|
20
|
+
answer: '용품과 의류를 중고로 구매하고, 가능하다면 모유 수유를 선택하며, 출산 선물 리스트를 활용해 가족과 지인들로부터 필수품을 선물 받는 것이 가장 효과적인 전략입니다.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: '아기 예산 계획에서 "숨겨진 비용"이란 무엇인가요?',
|
|
24
|
+
answer: '공공요금(냉난방비) 증가, 가족 보험료 인상, 비급여 예방접종이나 표준 리스트에 잘 포함되지 않는 위생용품 등 예상치 못한 비용을 의미합니다.',
|
|
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: '프로필 설정하기',
|
|
41
|
+
text: '라이프스타일(절약형, 균형형, 프리미엄), 수유 방식, 보육 전략을 선택합니다.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: '품목 확인하기',
|
|
45
|
+
text: '카테고리(초기 투자, 월간 비용, 주요 마일스톤)를 훑어보며 가격을 조정하거나 중고 품목으로 표시합니다.',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: '예산 추적하기',
|
|
49
|
+
text: '첫 1년에 필요한 총액을 확인하고, 품목을 마련해 나가면서 진행 상황을 모니터링합니다.',
|
|
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: 'KRW',
|
|
75
|
+
},
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
export const content: ToolLocaleContent<BabyBudgetPlannerUI> = {
|
|
79
|
+
title,
|
|
80
|
+
description,
|
|
81
|
+
slug: 'baby-budget-planner',
|
|
82
|
+
faqTitle: '자주 묻는 질문',
|
|
83
|
+
bibliographyTitle: '참고 문헌',
|
|
84
|
+
seo: [
|
|
85
|
+
{ type: 'summary', title: '핵심 요약: 아기 예산', items: [
|
|
86
|
+
'첫 1년 비용은 보통 1,000만 원에서 3,000만 원 사이입니다.',
|
|
87
|
+
'초기 세팅 비용(아기방, 유모차)이 시작 단계에서 가장 큰 부담이 됩니다.',
|
|
88
|
+
'보육료는 매월 반복되는 예산의 최대 50%를 차지할 수 있습니다.',
|
|
89
|
+
'중고 물품을 활용하면 총 예산을 최대 60%까지 줄일 수 있습니다.',
|
|
90
|
+
]},
|
|
91
|
+
{ type: 'title', text: '아기 첫 1년, 실제로 얼마나 드나요?', level: 2 },
|
|
92
|
+
{ type: 'paragraph', html: '아기를 맞이할 준비는 단순히 기저귀를 사는 것 그 이상입니다. 일회성 투자와 매월 반복되는 비용을 전략적으로 살펴봐야 합니다. 저희 시뮬레이터는 이러한 지출 곡선을 시각화하고 부모가 되는 과정에서의 재정적 변화에 대비할 수 있도록 도와줍니다.' },
|
|
93
|
+
{ type: 'stats', columns: 3, items: [
|
|
94
|
+
{ value: '500만 원+', label: '초기 장비 세팅' },
|
|
95
|
+
{ value: '15-20만 원', label: '월간 기저귀/위생' },
|
|
96
|
+
{ value: '40%+', label: '중고 활용 시 절약' },
|
|
97
|
+
]},
|
|
98
|
+
{ type: 'title', text: '카테고리별 상세: 돈이 어디로 나가나요?', level: 3 },
|
|
99
|
+
{ type: 'table', headers: ['카테고리', '주요 품목', '주기', '비용 영향'], rows: [
|
|
100
|
+
['초기 투자', '아기침대, 유모차, 카시트', '1회성', '높음'],
|
|
101
|
+
['월간 지출', '기저귀, 분유, 약국용품', '매월', '중간'],
|
|
102
|
+
['마일스톤', '이유식 의자, 식기, 의류', '수시', '중간'],
|
|
103
|
+
['보육 비용', '어린이집 / 베이비시터', '매월', '매우 높음'],
|
|
104
|
+
]},
|
|
105
|
+
{ type: 'tip', html: '<strong>전문가 절약 팁:</strong> 고품질 유모차와 아기방 가구는 재판매 가치가 뛰어납니다. 이를 중고로 구매하면 안전이나 스타일을 포기하지 않고도 수백만 원을 절약할 수 있습니다.' },
|
|
106
|
+
{ type: 'title', text: '라이프스타일 비교', level: 3 },
|
|
107
|
+
{ type: 'comparative', columns: 2, items: [
|
|
108
|
+
{
|
|
109
|
+
title: '절약형',
|
|
110
|
+
description: '중고 물품과 필수품에 집중합니다.',
|
|
111
|
+
points: ['물려받은 옷 활용', '리퍼브 장비 구매', '모유 수유 중심', '국공립 보육 시설']
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
title: '프리미엄',
|
|
115
|
+
description: '최신 모델과 최대의 편리함을 추구합니다.',
|
|
116
|
+
points: ['하이테크 육아 가전', '유기농 분유', '디자이너 가구', '1대1 프라이빗 보육']
|
|
117
|
+
},
|
|
118
|
+
]},
|
|
119
|
+
{ type: 'title', text: '스마트한 계획 체크리스트', level: 3 },
|
|
120
|
+
{ type: 'list', items: [
|
|
121
|
+
'가족 보험 보장 범위 업데이트를 확인하세요.',
|
|
122
|
+
'비급여 예방접종 및 특수 위생용품 예산을 책정하세요.',
|
|
123
|
+
'냉난방비 등 공공요금이 약 20% 증가할 것에 대비하세요.',
|
|
124
|
+
'큰 지출 항목은 가족들의 도움을 받을 수 있도록 미리 선물 리스트를 만드세요.',
|
|
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: '계획 시작하기',
|
|
134
|
+
lifestyleLabel: '라이프스타일 선택',
|
|
135
|
+
lifestyleSaving: '최대한 절약',
|
|
136
|
+
lifestyleBalanced: '균형 잡힌 선택',
|
|
137
|
+
lifestylePremium: '프리미엄',
|
|
138
|
+
feedingLabel: '수유 방식',
|
|
139
|
+
feedingBreast: '모유 수유',
|
|
140
|
+
feedingFormula: '분유 수유',
|
|
141
|
+
feedingMixed: '혼합 수유',
|
|
142
|
+
childcareLabel: '보육 전략',
|
|
143
|
+
childcareHome: '가정 양육',
|
|
144
|
+
childcarePublic: '어린이집',
|
|
145
|
+
childcarePrivate: '사립 보육 / 시터',
|
|
146
|
+
startBtn: '내 예산 생성하기',
|
|
147
|
+
categoryBeforeBirth: '초기 투자 비용',
|
|
148
|
+
categoryMonthByMonth: '매월 반복 지출',
|
|
149
|
+
categoryMilestones: '주요 성장 단계',
|
|
150
|
+
totalNeededLabel: '첫 1년 총 목표액',
|
|
151
|
+
savingsProgressLabel: '준비됨 / 저축됨',
|
|
152
|
+
chartTitle: '월간 지출 곡선',
|
|
153
|
+
ghostAlertsTitle: '숨겨진 비용 알림',
|
|
154
|
+
ghostInsurance: '생명/건강 보험 확인',
|
|
155
|
+
ghostHeating: '냉난방비 +20% 대비',
|
|
156
|
+
ghostVaccines: '선택 예방접종 예산',
|
|
157
|
+
diaperCalcTitle: '기저귀 가격 체크',
|
|
158
|
+
diaperPriceLabel: '팩당 가격',
|
|
159
|
+
diaperUnitsLabel: '팩당 수량',
|
|
160
|
+
secondHandLabel: '중고 / 선물',
|
|
161
|
+
wishlistLabel: '위시리스트 포함',
|
|
162
|
+
itemNursery: '아기방 꾸미기',
|
|
163
|
+
itemStroller: '유모차 및 트래블 시스템',
|
|
164
|
+
itemHospitalBag: '출산 가방 필수품',
|
|
165
|
+
itemDiapers: '기저귀 및 물티슈',
|
|
166
|
+
itemPharmacy: '약국 및 위생용품',
|
|
167
|
+
itemDaycare: '보육료 / 시터 비용',
|
|
168
|
+
itemSolidFood: '이유식 준비기',
|
|
169
|
+
itemClothes: '계절별 의류',
|
|
170
|
+
itemHighChair: '식탁 의자 및 식기 세트',
|
|
171
|
+
editLabel: '가격 수정',
|
|
172
|
+
saveBtn: '저장',
|
|
173
|
+
exportBtn: 'JSON 내보내기',
|
|
174
|
+
importBtn: 'JSON 가져오기',
|
|
175
|
+
resetBtn: '계획 초기화',
|
|
176
|
+
currencySymbol: '원',
|
|
177
|
+
monthPrefix: 'M',
|
|
178
|
+
initialMonthLabel: '시작',
|
|
179
|
+
perMonthLabel: '/월',
|
|
180
|
+
confirmReset: '확실합니까?',
|
|
181
|
+
currencyMultiplier: 1450,
|
|
182
|
+
},
|
|
183
|
+
};
|
|
@@ -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 = 'Baby Budget Planner';
|
|
7
|
+
export const description = 'De ultieme tool om de kosten voor het eerste jaar van je baby te plannen. Bereken de inrichting van de babykamer, maandelijkse kosten en verborgen uitgaven met slimme bespaartips.';
|
|
8
|
+
|
|
9
|
+
export const faq = [
|
|
10
|
+
{
|
|
11
|
+
question: 'Hoeveel kost een baby in het eerste jaar?',
|
|
12
|
+
answer: 'Gemiddeld kan het eerste jaar tussen de € 5.000 en € 15.000 kosten, afhankelijk van je levensstijl, kinderopvang en of je spullen nieuw of tweedehands koopt.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: 'Wat zijn de duurste items voor een pasgeborene?',
|
|
16
|
+
answer: 'De grootste eenmalige kosten zijn meestal de kinderwagen, de inrichting van de babykamer (ledikant, commode) en het autostoeltje. Kinderopvang is de grootste terugkerende maandelijkse uitgave.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: 'Hoe kan ik besparen op babyuitgaven?',
|
|
20
|
+
answer: 'Tweedehands kopen voor uitrusting en kleding, borstvoeding geven (indien mogelijk) en een geboortelijst gebruiken zodat vrienden en familie essentiële items cadeau kunnen doen, zijn de meest effectieve strategieën.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'Wat zijn "Spookuitgaven" bij het plannen van een baby?',
|
|
24
|
+
answer: 'Dit zijn verborgen kosten zoals een hogere energierekening (verwarming/koeling), hogere premies voor de gezinsverzekering en niet-verplichte vaccins of medische benodigdheden die meestal niet op standaard checklists staan.',
|
|
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: 'Configureer je profiel',
|
|
41
|
+
text: 'Selecteer je levensstijl (Besparend, Gebalanceerd of Premium), voedingsmethode en kinderopvangstrategie.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Bekijk je items',
|
|
45
|
+
text: 'Doorloop de categorieën (Eerste investeringen, Maandelijks en Mijlpalen) en pas prijzen aan of markeer items als tweedehands.',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Volg je budget',
|
|
49
|
+
text: 'Zie het totaalbedrag dat nodig is voor het eerste jaar en houd je voortgang bij terwijl je items aanschaft.',
|
|
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-planner-berekenen',
|
|
82
|
+
faqTitle: 'Veelgestelde Vragen',
|
|
83
|
+
bibliographyTitle: 'Bibliografie',
|
|
84
|
+
seo: [
|
|
85
|
+
{ type: 'summary', title: 'Samenvatting: Baby Budgettering', items: [
|
|
86
|
+
'Het eerste jaar kan tussen de € 5.000 en € 15.000 kosten.',
|
|
87
|
+
'Eenmalige opstartkosten (babykamer, kinderwagen) zijn de grootste eerste hobbel.',
|
|
88
|
+
'Kinderopvang kan tot 50% van het terugkerende maandelijkse budget uitmaken.',
|
|
89
|
+
'Tweedehands items kunnen het totale budget met tot wel 60% verlagen.',
|
|
90
|
+
]},
|
|
91
|
+
{ type: 'title', text: 'Wat kost een baby echt in het eerste jaar?', level: 2 },
|
|
92
|
+
{ type: 'paragraph', html: 'Het plannen voor een baby houdt meer in dan alleen luiers kopen. Het vereist een strategische kijk op eenmalige investeringen versus terugkerende maandelijkse kosten. Onze planner helpt je deze curve te visualiseren en je voor te bereiden op de financiële overgang naar het ouderschap.' },
|
|
93
|
+
{ type: 'stats', columns: 3, items: [
|
|
94
|
+
{ value: '€ 2.000+', label: 'Eerste uitrusting' },
|
|
95
|
+
{ value: '€ 100-150', label: 'Maandluiers/Verzorging' },
|
|
96
|
+
{ value: '40%+', label: 'Besparingen via 2e hands' },
|
|
97
|
+
]},
|
|
98
|
+
{ type: 'title', text: 'Categorie Breakdown: Waar gaat het geld heen?', level: 3 },
|
|
99
|
+
{ type: 'table', headers: ['Categorie', 'Typische Items', 'Frequentie', 'Impact op kosten'], rows: [
|
|
100
|
+
['Opstartkosten', 'Wieg, Kinderwagen, Autostoeltje', 'Eenmalig', 'Hoog'],
|
|
101
|
+
['Maandelijks', 'Luiers, Flesvoeding, Apotheek', 'Elke maand', 'Gemiddeld'],
|
|
102
|
+
['Mijlpalen', 'Kinderstoel, Vaste voeding, Kleding', 'Af en toe', 'Gemiddeld'],
|
|
103
|
+
['Opvang', 'Kinderdagverblijf / Gastouder', 'Elke maand', 'Zeer Hoog'],
|
|
104
|
+
]},
|
|
105
|
+
{ type: 'tip', html: '<strong>Pro bespaartip:</strong> Kwalitatieve kinderwagens en babykamermeubels hebben een uitstekende herverkoopwaarde. Door deze tweedehands te kopen kun je duizenden euro\'s besparen zonder in te leveren op veiligheid of stijl.' },
|
|
106
|
+
{ type: 'title', text: 'Vergelijking van levensstijl', level: 3 },
|
|
107
|
+
{ type: 'comparative', columns: 2, items: [
|
|
108
|
+
{
|
|
109
|
+
title: 'Besparend',
|
|
110
|
+
description: 'Focus op tweedehands en essentiële zaken.',
|
|
111
|
+
points: ['Gekregen kleding', 'Refurbished uitrusting', 'Focus op borstvoeding', 'Publieke opvang']
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
title: 'Premium',
|
|
115
|
+
description: 'Nieuwste modellen en maximaal gemak.',
|
|
116
|
+
points: ['High-tech uitrusting', 'Biologische voeding', 'Designer babykamer', 'Privé opvang aan huis']
|
|
117
|
+
},
|
|
118
|
+
]},
|
|
119
|
+
{ type: 'title', text: 'Slimme planning checklist', level: 3 },
|
|
120
|
+
{ type: 'list', items: [
|
|
121
|
+
'Controleer updates voor de gezinsdekking van je verzekeringen.',
|
|
122
|
+
'Budgetteer voor niet-verplichte vaccins en gespecialiseerde apotheekitems.',
|
|
123
|
+
'Houd rekening met een stijging van 20% in de energierekening (verwarming/koeling).',
|
|
124
|
+
'Maak vroegtijdig een geboortelijst aan zodat familie kan helpen bij grote aankopen.',
|
|
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: 'Start je Plan',
|
|
134
|
+
lifestyleLabel: 'Levensstijl Keuze',
|
|
135
|
+
lifestyleSaving: 'Maximaal Besparen',
|
|
136
|
+
lifestyleBalanced: 'Gebalanceerd',
|
|
137
|
+
lifestylePremium: 'Premium',
|
|
138
|
+
feedingLabel: 'Voedingsmethode',
|
|
139
|
+
feedingBreast: 'Borstvoeding',
|
|
140
|
+
feedingFormula: 'Flesvoeding',
|
|
141
|
+
feedingMixed: 'Gemengd',
|
|
142
|
+
childcareLabel: 'Opvangstrategie',
|
|
143
|
+
childcareHome: 'Thuis blijven',
|
|
144
|
+
childcarePublic: 'Openbare Opvang',
|
|
145
|
+
childcarePrivate: 'Privé Opvang',
|
|
146
|
+
startBtn: 'Genereer mijn Budget',
|
|
147
|
+
categoryBeforeBirth: 'Eerste Investeringen',
|
|
148
|
+
categoryMonthByMonth: 'Maandelijkse Kosten',
|
|
149
|
+
categoryMilestones: 'Toekomstige Mijlpalen',
|
|
150
|
+
totalNeededLabel: 'Totaaldoel Eerste Jaar',
|
|
151
|
+
savingsProgressLabel: 'Klaar / Gespaard',
|
|
152
|
+
chartTitle: 'Maandelijkse Uitgavencurve',
|
|
153
|
+
ghostAlertsTitle: 'Spookuitgaven Meldingen',
|
|
154
|
+
ghostInsurance: 'Check Gezinsverzekeringen',
|
|
155
|
+
ghostHeating: 'Houd rekening met +20% Energie',
|
|
156
|
+
ghostVaccines: 'Budget voor Extra Vaccins',
|
|
157
|
+
diaperCalcTitle: 'Luiers Prijscheck',
|
|
158
|
+
diaperPriceLabel: 'Prijs per Pak',
|
|
159
|
+
diaperUnitsLabel: 'Aantal per Pak',
|
|
160
|
+
secondHandLabel: '2e Hands / Cadeau',
|
|
161
|
+
wishlistLabel: 'Op Verlanglijst',
|
|
162
|
+
itemNursery: 'Inrichting Babykamer',
|
|
163
|
+
itemStroller: 'Kinderwagen & Reissysteem',
|
|
164
|
+
itemHospitalBag: 'Inhoud Ziekenhuistas',
|
|
165
|
+
itemDiapers: 'Luiers & Doekjes',
|
|
166
|
+
itemPharmacy: 'Apotheek & Hygiëne',
|
|
167
|
+
itemDaycare: 'Kinderopvang',
|
|
168
|
+
itemSolidFood: 'Overgang Vaste Voeding',
|
|
169
|
+
itemClothes: 'Seizoenskleding',
|
|
170
|
+
itemHighChair: 'Kinderstoel & Eetset',
|
|
171
|
+
editLabel: 'Prijs bewerken',
|
|
172
|
+
saveBtn: 'Opslaan',
|
|
173
|
+
exportBtn: 'Exporteer JSON',
|
|
174
|
+
importBtn: 'Importeer JSON',
|
|
175
|
+
resetBtn: 'Plan Resetten',
|
|
176
|
+
currencySymbol: '€',
|
|
177
|
+
monthPrefix: 'M',
|
|
178
|
+
initialMonthLabel: 'Start',
|
|
179
|
+
perMonthLabel: '/maand',
|
|
180
|
+
confirmReset: 'Weet je het zeker?',
|
|
181
|
+
currencyMultiplier: 1,
|
|
182
|
+
},
|
|
183
|
+
};
|