@jjlmoya/utils-finance 1.1.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 +64 -0
- package/src/category/i18n/en.ts +159 -0
- package/src/category/i18n/es.ts +159 -0
- package/src/category/i18n/fr.ts +159 -0
- package/src/category/index.ts +24 -0
- package/src/category/seo.astro +15 -0
- package/src/components/PreviewNavSidebar.astro +116 -0
- package/src/components/PreviewToolbar.astro +143 -0
- package/src/data.ts +11 -0
- package/src/env.d.ts +5 -0
- package/src/index.ts +32 -0
- package/src/layouts/PreviewLayout.astro +117 -0
- package/src/pages/[locale]/[slug].astro +146 -0
- package/src/pages/[locale].astro +251 -0
- package/src/pages/index.astro +4 -0
- package/src/tests/faq_count.test.ts +19 -0
- package/src/tests/locale_completeness.test.ts +39 -0
- package/src/tests/mocks/astro_mock.js +2 -0
- package/src/tests/no_h1_in_components.test.ts +48 -0
- package/src/tests/schemas_fulfillment.test.ts +23 -0
- package/src/tests/seo_length.test.ts +23 -0
- package/src/tests/title_quality.test.ts +55 -0
- package/src/tests/tool_validation.test.ts +17 -0
- package/src/tool/compoundInterest/bibliography.astro +14 -0
- package/src/tool/compoundInterest/component.astro +697 -0
- package/src/tool/compoundInterest/i18n/en.ts +212 -0
- package/src/tool/compoundInterest/i18n/es.ts +212 -0
- package/src/tool/compoundInterest/i18n/fr.ts +212 -0
- package/src/tool/compoundInterest/index.ts +34 -0
- package/src/tool/compoundInterest/logic.ts +40 -0
- package/src/tool/compoundInterest/seo.astro +14 -0
- package/src/tool/compoundInterest/ui.ts +19 -0
- package/src/tool/courtFeeCalculator/bibliography.astro +14 -0
- package/src/tool/courtFeeCalculator/component.astro +427 -0
- package/src/tool/courtFeeCalculator/i18n/en.ts +268 -0
- package/src/tool/courtFeeCalculator/i18n/es.ts +268 -0
- package/src/tool/courtFeeCalculator/i18n/fr.ts +268 -0
- package/src/tool/courtFeeCalculator/index.ts +33 -0
- package/src/tool/courtFeeCalculator/logic.ts +86 -0
- package/src/tool/courtFeeCalculator/seo.astro +14 -0
- package/src/tool/courtFeeCalculator/ui.ts +31 -0
- package/src/tool/debtSnowball/bibliography.astro +14 -0
- package/src/tool/debtSnowball/component.astro +1052 -0
- package/src/tool/debtSnowball/i18n/en.ts +288 -0
- package/src/tool/debtSnowball/i18n/es.ts +288 -0
- package/src/tool/debtSnowball/i18n/fr.ts +288 -0
- package/src/tool/debtSnowball/index.ts +37 -0
- package/src/tool/debtSnowball/logic.ts +156 -0
- package/src/tool/debtSnowball/seo.astro +14 -0
- package/src/tool/debtSnowball/ui.ts +49 -0
- package/src/tool/fireCalculator/bibliography.astro +14 -0
- package/src/tool/fireCalculator/component.astro +689 -0
- package/src/tool/fireCalculator/i18n/en.ts +261 -0
- package/src/tool/fireCalculator/i18n/es.ts +261 -0
- package/src/tool/fireCalculator/i18n/fr.ts +261 -0
- package/src/tool/fireCalculator/index.ts +33 -0
- package/src/tool/fireCalculator/logic.ts +108 -0
- package/src/tool/fireCalculator/seo.astro +14 -0
- package/src/tool/fireCalculator/ui.ts +33 -0
- package/src/tool/ibanBicSwiftConverter/bibliography.astro +14 -0
- package/src/tool/ibanBicSwiftConverter/component.astro +581 -0
- package/src/tool/ibanBicSwiftConverter/i18n/en.ts +167 -0
- package/src/tool/ibanBicSwiftConverter/i18n/es.ts +216 -0
- package/src/tool/ibanBicSwiftConverter/i18n/fr.ts +167 -0
- package/src/tool/ibanBicSwiftConverter/index.ts +33 -0
- package/src/tool/ibanBicSwiftConverter/logic.ts +101 -0
- package/src/tool/ibanBicSwiftConverter/seo.astro +14 -0
- package/src/tool/ibanBicSwiftConverter/ui.ts +17 -0
- package/src/tool/inflation/bibliography.astro +14 -0
- package/src/tool/inflation/component.astro +400 -0
- package/src/tool/inflation/i18n/en.ts +301 -0
- package/src/tool/inflation/i18n/es.ts +301 -0
- package/src/tool/inflation/i18n/fr.ts +301 -0
- package/src/tool/inflation/index.ts +34 -0
- package/src/tool/inflation/logic.ts +92 -0
- package/src/tool/inflation/seo.astro +14 -0
- package/src/tool/inflation/ui.ts +17 -0
- package/src/tool/lateInterest/bibliography.astro +14 -0
- package/src/tool/lateInterest/component.astro +655 -0
- package/src/tool/lateInterest/i18n/en.ts +255 -0
- package/src/tool/lateInterest/i18n/es.ts +224 -0
- package/src/tool/lateInterest/i18n/fr.ts +224 -0
- package/src/tool/lateInterest/index.ts +34 -0
- package/src/tool/lateInterest/logic.ts +89 -0
- package/src/tool/lateInterest/seo.astro +14 -0
- package/src/tool/lateInterest/ui.ts +33 -0
- package/src/tool/legalInterestRate/bibliography.astro +14 -0
- package/src/tool/legalInterestRate/component.astro +650 -0
- package/src/tool/legalInterestRate/i18n/en.ts +159 -0
- package/src/tool/legalInterestRate/i18n/es.ts +159 -0
- package/src/tool/legalInterestRate/i18n/fr.ts +159 -0
- package/src/tool/legalInterestRate/index.ts +33 -0
- package/src/tool/legalInterestRate/logic.ts +29 -0
- package/src/tool/legalInterestRate/seo.astro +14 -0
- package/src/tool/legalInterestRate/ui.ts +23 -0
- package/src/tool/lotteryOptimizer/bibliography.astro +14 -0
- package/src/tool/lotteryOptimizer/component.astro +863 -0
- package/src/tool/lotteryOptimizer/i18n/en.ts +188 -0
- package/src/tool/lotteryOptimizer/i18n/es.ts +281 -0
- package/src/tool/lotteryOptimizer/i18n/fr.ts +188 -0
- package/src/tool/lotteryOptimizer/index.ts +33 -0
- package/src/tool/lotteryOptimizer/logic.ts +133 -0
- package/src/tool/lotteryOptimizer/seo.astro +14 -0
- package/src/tool/lotteryOptimizer/ui.ts +33 -0
- package/src/tool/mortgage/bibliography.astro +14 -0
- package/src/tool/mortgage/component.astro +1030 -0
- package/src/tool/mortgage/i18n/en.ts +227 -0
- package/src/tool/mortgage/i18n/es.ts +227 -0
- package/src/tool/mortgage/i18n/fr.ts +227 -0
- package/src/tool/mortgage/index.ts +34 -0
- package/src/tool/mortgage/logic.ts +118 -0
- package/src/tool/mortgage/seo.astro +14 -0
- package/src/tool/mortgage/ui.ts +35 -0
- package/src/tool/percentageCalculator/bibliography.astro +14 -0
- package/src/tool/percentageCalculator/component.astro +640 -0
- package/src/tool/percentageCalculator/i18n/en.ts +233 -0
- package/src/tool/percentageCalculator/i18n/es.ts +233 -0
- package/src/tool/percentageCalculator/i18n/fr.ts +233 -0
- package/src/tool/percentageCalculator/index.ts +34 -0
- package/src/tool/percentageCalculator/logic.ts +48 -0
- package/src/tool/percentageCalculator/seo.astro +14 -0
- package/src/tool/percentageCalculator/ui.ts +30 -0
- package/src/tool/rentIncreaseCalculator/bibliography.astro +14 -0
- package/src/tool/rentIncreaseCalculator/component.astro +587 -0
- package/src/tool/rentIncreaseCalculator/i18n/en.ts +159 -0
- package/src/tool/rentIncreaseCalculator/i18n/es.ts +220 -0
- package/src/tool/rentIncreaseCalculator/i18n/fr.ts +159 -0
- package/src/tool/rentIncreaseCalculator/index.ts +33 -0
- package/src/tool/rentIncreaseCalculator/logic.ts +43 -0
- package/src/tool/rentIncreaseCalculator/seo.astro +14 -0
- package/src/tool/rentIncreaseCalculator/ui.ts +19 -0
- package/src/tools.ts +16 -0
- package/src/types.ts +74 -0
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { CompoundInterestUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'compound-interest-calculator';
|
|
6
|
+
const title = 'Compound Interest Calculator: Visualize Your Future Wealth';
|
|
7
|
+
const description =
|
|
8
|
+
'Discover how small investments become large fortunes. The definitive tool for planning your financial freedom and retirement.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: 'What is compound interest?',
|
|
13
|
+
answer:
|
|
14
|
+
'It is interest calculated on the initial principal and also on the accumulated interest from previous periods. This generates exponential growth of the investment over time.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: 'What is the difference from simple interest?',
|
|
18
|
+
answer:
|
|
19
|
+
"With simple interest, interest is calculated only on the initial principal. With compound interest, the interest is reinvested, meaning 'your interest earns more interest'.",
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: "What is the 'Rule of 72'?",
|
|
23
|
+
answer:
|
|
24
|
+
'It is a quick formula to estimate how long it will take for an investment to double: divide 72 by the annual rate of return. For example, at 8% per year, your money doubles in 9 years.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'Why is it important to start investing young?',
|
|
28
|
+
answer:
|
|
29
|
+
'Due to the exponential effect, the most decisive factor is not the amount of money saved, but time. Starting a few years earlier can result in much greater final wealth due to compounding.',
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howToData = [
|
|
34
|
+
{
|
|
35
|
+
name: 'Enter initial capital',
|
|
36
|
+
text: 'Type the amount of money you will start your investment plan with.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Define periodic contributions',
|
|
40
|
+
text: 'Indicate how much money you will save and invest each month additionally.',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Estimate annual return',
|
|
44
|
+
text: 'Enter the annual profit percentage you expect to obtain (e.g. 7% for the historical S&P 500).',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Adjust the time horizon',
|
|
48
|
+
text: 'Choose how many years you will maintain the investment to visualize the exponential growth of your capital.',
|
|
49
|
+
},
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqData.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
const howToSchema: WithContext<HowTo> = {
|
|
63
|
+
'@context': 'https://schema.org',
|
|
64
|
+
'@type': 'HowTo',
|
|
65
|
+
name: title,
|
|
66
|
+
description,
|
|
67
|
+
step: howToData.map((step, i) => ({
|
|
68
|
+
'@type': 'HowToStep',
|
|
69
|
+
position: i + 1,
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
+
'@context': 'https://schema.org',
|
|
77
|
+
'@type': 'SoftwareApplication',
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'FinanceApplication',
|
|
81
|
+
operatingSystem: 'All',
|
|
82
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'USD' },
|
|
83
|
+
inLanguage: 'en',
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export const content: ToolLocaleContent<CompoundInterestUI> = {
|
|
87
|
+
slug,
|
|
88
|
+
title,
|
|
89
|
+
description,
|
|
90
|
+
faqTitle: 'Frequently Asked Questions',
|
|
91
|
+
faq: faqData,
|
|
92
|
+
bibliographyTitle: 'Sources & References',
|
|
93
|
+
bibliography: [
|
|
94
|
+
{
|
|
95
|
+
name: 'Investopedia: Compound Interest Definition',
|
|
96
|
+
url: 'https://www.investopedia.com/terms/c/compoundinterest.asp',
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
name: 'Investopedia: Rule of 72',
|
|
100
|
+
url: 'https://www.investopedia.com/terms/r/ruleof72.asp',
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
name: 'Khan Academy: Interest and Debt',
|
|
104
|
+
url: 'https://www.khanacademy.org/economics-finance-domain/core-finance/interest-tutorial',
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
name: 'Investopedia: Time Value of Money',
|
|
108
|
+
url: 'https://www.investopedia.com/terms/t/timevalueofmoney.asp',
|
|
109
|
+
},
|
|
110
|
+
],
|
|
111
|
+
howTo: howToData,
|
|
112
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
113
|
+
seo: [
|
|
114
|
+
{
|
|
115
|
+
type: 'title',
|
|
116
|
+
text: 'The Magic of Compound Interest: Build Your Wealth Exponentially',
|
|
117
|
+
level: 2,
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
type: 'paragraph',
|
|
121
|
+
html: 'Albert Einstein called it the "eighth wonder of the world." <strong>Compound interest</strong> is the most powerful mechanism for building long-term wealth. You don\'t need to be a finance expert to leverage it: you just need time, patience, and invested money.',
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
type: 'title',
|
|
125
|
+
text: 'Simple vs Compound Interest: The Snowball Metaphor',
|
|
126
|
+
level: 3,
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 'paragraph',
|
|
130
|
+
html: 'Imagine a snowball at the top of a hill. <strong>Simple interest</strong> is like rolling that ball down and manually adding snow every meter to make it grow. <strong>Compound interest</strong> is like letting the ball roll on its own: it picks up snow naturally, and the bigger it gets, the more surface area it has to pick up <em>even more</em> snow with each rotation.',
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
type: 'comparative',
|
|
134
|
+
columns: 2,
|
|
135
|
+
items: [
|
|
136
|
+
{
|
|
137
|
+
title: 'Simple Interest',
|
|
138
|
+
description: 'Interest is always calculated on the original principal.',
|
|
139
|
+
points: [
|
|
140
|
+
'Formula: Principal × Rate × Time',
|
|
141
|
+
'Linear and predictable growth',
|
|
142
|
+
'Used in short-term loans',
|
|
143
|
+
'No reinvestment of profits',
|
|
144
|
+
],
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
title: 'Compound Interest',
|
|
148
|
+
description: 'Interest is added to principal and generates new interest.',
|
|
149
|
+
highlight: true,
|
|
150
|
+
points: [
|
|
151
|
+
'Formula: Principal × (1 + Rate)^Time',
|
|
152
|
+
'Accelerated exponential growth',
|
|
153
|
+
'Foundation of long-term investing',
|
|
154
|
+
'Your profits generate more profits',
|
|
155
|
+
],
|
|
156
|
+
},
|
|
157
|
+
],
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
type: 'paragraph',
|
|
161
|
+
html: 'Mathematically, your earnings generate new earnings. In the early years it seems slow, but past the "inflection point," the curve shoots up vertically. This is where real wealth is created.',
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
type: 'title',
|
|
165
|
+
text: 'Why Time is Your Greatest Ally',
|
|
166
|
+
level: 3,
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
type: 'paragraph',
|
|
170
|
+
html: 'The most determining factor is not how much money you invest, but <strong>how many years you let it grow</strong>. Starting 10 years earlier can result in 2-3 times more final wealth, even if you invest less total money. This exponential effect is why young investors have an unmatched advantage.',
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
type: 'tip',
|
|
174
|
+
title: 'The Rule of 72',
|
|
175
|
+
html: '<p>Divide 72 by your annual return to find how many years it takes to <strong>double your money</strong>.</p><p><em>Example: At 8%, you double every 9 years (72/8 = 9).</em></p><p>This magic formula works for any rate of return and helps you quickly estimate investment growth.</p>',
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
type: 'tip',
|
|
179
|
+
title: '2026 Tip',
|
|
180
|
+
html: '<p>Inflation remains a factor. Make sure your net returns exceed at least 2-3% annually to avoid losing purchasing power. Invest in assets that grow faster than inflation.</p>',
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
type: 'title',
|
|
184
|
+
text: 'Compounding Frequency: Does It Matter?',
|
|
185
|
+
level: 3,
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
type: 'paragraph',
|
|
189
|
+
html: 'Interest can compound annually, semi-annually, quarterly, monthly, or even daily. The <strong>more frequent the compounding</strong>, the greater the compound effect. The same principal at the same rate will grow more if interest compounds monthly than if it compounds annually.',
|
|
190
|
+
},
|
|
191
|
+
],
|
|
192
|
+
ui: {
|
|
193
|
+
labelTitle: 'Investment Simulator',
|
|
194
|
+
labelRealtime: 'Real time',
|
|
195
|
+
labelInitial: 'Initial Deposit',
|
|
196
|
+
labelMonthly: 'Monthly Contribution',
|
|
197
|
+
labelRate: 'Annual Return',
|
|
198
|
+
labelYears: 'Years',
|
|
199
|
+
labelMyMoney: 'Your Money',
|
|
200
|
+
labelProfit: 'Profit (Interest)',
|
|
201
|
+
labelTotal: 'Total Accumulated',
|
|
202
|
+
labelYear: 'Year',
|
|
203
|
+
labelPrincipal: 'Your Money (Principal)',
|
|
204
|
+
labelInterest: 'Generated Interest',
|
|
205
|
+
insightPrefix: '[TIP] In year ',
|
|
206
|
+
insightSuffix:
|
|
207
|
+
', your annual generated interest will exceed your contributions. Your money is working harder than you!',
|
|
208
|
+
currencySymbol: '$',
|
|
209
|
+
currencyCode: 'USD',
|
|
210
|
+
currencyLocale: 'en-US',
|
|
211
|
+
},
|
|
212
|
+
};
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { CompoundInterestUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'interes-compuesto';
|
|
6
|
+
const title = 'Calculadora de Interés Compuesto: Visualiza tu Riqueza Futura';
|
|
7
|
+
const description =
|
|
8
|
+
'Descubre cómo pequeñas inversiones se convierten en grandes fortunas. La herramienta definitiva para planificar tu libertad financiera y jubilación.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: '¿Qué es el interés compuesto?',
|
|
13
|
+
answer:
|
|
14
|
+
'Es el interés calculado sobre el capital inicial y también sobre los intereses acumulados de períodos anteriores. Esto genera un crecimiento exponencial de la inversión a lo largo del tiempo.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: '¿Cuál es la diferencia con el interés simple?',
|
|
18
|
+
answer:
|
|
19
|
+
"En el interés simple, los intereses se calculan solo sobre el capital inicial. En el compuesto, los intereses se reinvierten, lo que significa que 'tus intereses generan más intereses'.",
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: "¿Qué es la 'Regla del 72'?",
|
|
23
|
+
answer:
|
|
24
|
+
'Es una fórmula rápida para estimar cuánto tiempo tardará en duplicarse una inversión: divide 72 entre la tasa de rentabilidad anual. Por ejemplo, al 8% anual, duplicarás tu dinero en 9 años.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: '¿Por qué es importante empezar a invertir joven?',
|
|
28
|
+
answer:
|
|
29
|
+
'Debido al efecto exponencial, el factor más determinante no es la cantidad de dinero ahorrada, sino el tiempo. Empezar unos años antes puede resultar en una riqueza final mucho mayor debido a la capitalización.',
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howToData = [
|
|
34
|
+
{
|
|
35
|
+
name: 'Introducir capital inicial',
|
|
36
|
+
text: 'Escribe la cantidad de dinero con la que vas a comenzar tu plan de inversión.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Definir aportaciones periódicas',
|
|
40
|
+
text: 'Indica cuánto dinero ahorrarás e invertirás cada mes o cada año adicionalmente.',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Estimar rentabilidad anual',
|
|
44
|
+
text: 'Introduce el porcentaje de beneficio anual que esperas obtener (ej. 7% para el S&P 500 histórico).',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Ajustar el horizonte temporal',
|
|
48
|
+
text: 'Elige cuántos años mantendrás la inversión para visualizar el crecimiento exponencial de tu capital.',
|
|
49
|
+
},
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqData.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
const howToSchema: WithContext<HowTo> = {
|
|
63
|
+
'@context': 'https://schema.org',
|
|
64
|
+
'@type': 'HowTo',
|
|
65
|
+
name: title,
|
|
66
|
+
description,
|
|
67
|
+
step: howToData.map((step, i) => ({
|
|
68
|
+
'@type': 'HowToStep',
|
|
69
|
+
position: i + 1,
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
+
'@context': 'https://schema.org',
|
|
77
|
+
'@type': 'SoftwareApplication',
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'FinanceApplication',
|
|
81
|
+
operatingSystem: 'All',
|
|
82
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
83
|
+
inLanguage: 'es',
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export const content: ToolLocaleContent<CompoundInterestUI> = {
|
|
87
|
+
slug,
|
|
88
|
+
title,
|
|
89
|
+
description,
|
|
90
|
+
faqTitle: 'Preguntas Frecuentes',
|
|
91
|
+
faq: faqData,
|
|
92
|
+
bibliographyTitle: 'Fuentes y Referencias',
|
|
93
|
+
bibliography: [
|
|
94
|
+
{
|
|
95
|
+
name: 'Investopedia: Compound Interest Definition',
|
|
96
|
+
url: 'https://www.investopedia.com/terms/c/compoundinterest.asp',
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
name: 'Investopedia: Rule of 72',
|
|
100
|
+
url: 'https://www.investopedia.com/terms/r/ruleof72.asp',
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
name: 'Khan Academy: Interest and Debt',
|
|
104
|
+
url: 'https://www.khanacademy.org/economics-finance-domain/core-finance/interest-tutorial',
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
name: 'Banco de España: Portal del Cliente Bancario',
|
|
108
|
+
url: 'https://www.bde.es/bde/es/secciones/servicios/Particulares_y_e/Clientesbancarios/',
|
|
109
|
+
},
|
|
110
|
+
],
|
|
111
|
+
howTo: howToData,
|
|
112
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
113
|
+
seo: [
|
|
114
|
+
{
|
|
115
|
+
type: 'title',
|
|
116
|
+
text: 'La Magia del Interés Compuesto: Construye tu Riqueza Exponencialmente',
|
|
117
|
+
level: 2,
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
type: 'paragraph',
|
|
121
|
+
html: 'Albert Einstein la llamó la "octava maravilla del mundo". El <strong>interés compuesto</strong> es el mecanismo más poderoso para generar riqueza a largo plazo. No necesitas ser un experto en finanzas para aprovecharlo: solo necesitas tiempo, paciencia y dinero invertido.',
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
type: 'title',
|
|
125
|
+
text: 'Interés Simple vs Compuesto: La Metáfora de la Bola de Nieve',
|
|
126
|
+
level: 3,
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 'paragraph',
|
|
130
|
+
html: 'Imagina que tienes una bola de nieve en lo alto de una colina. El <strong>interés simple</strong> es como bajar esa bola y tener que añadirle nieve manualmente cada metro para que crezca. El <strong>interés compuesto</strong> es como dejar que la bola ruede sola: recoge nieve por sí misma, y cuanto más grande se hace, más superficie tiene para recoger <em>aún más</em> nieve en cada giro.',
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
type: 'comparative',
|
|
134
|
+
columns: 2,
|
|
135
|
+
items: [
|
|
136
|
+
{
|
|
137
|
+
title: 'Interés Simple',
|
|
138
|
+
description: 'Los intereses se calculan siempre sobre el capital inicial.',
|
|
139
|
+
points: [
|
|
140
|
+
'Fórmula: Capital × Tasa × Tiempo',
|
|
141
|
+
'Crecimiento lineal y predecible',
|
|
142
|
+
'Utilizado en préstamos a corto plazo',
|
|
143
|
+
'Sin reinversión de beneficios',
|
|
144
|
+
],
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
title: 'Interés Compuesto',
|
|
148
|
+
description: 'Los intereses se suman al capital y generan nuevos intereses.',
|
|
149
|
+
highlight: true,
|
|
150
|
+
points: [
|
|
151
|
+
'Fórmula: Capital × (1 + Tasa)^Tiempo',
|
|
152
|
+
'Crecimiento exponencial acelerado',
|
|
153
|
+
'Base de toda inversión a largo plazo',
|
|
154
|
+
'Tus beneficios generan más beneficios',
|
|
155
|
+
],
|
|
156
|
+
},
|
|
157
|
+
],
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
type: 'paragraph',
|
|
161
|
+
html: 'Matemáticamente, tus beneficios generan nuevos beneficios. En los primeros años parece lento, pero pasado el "punto de inflexión", la curva se dispara verticalmente. Aquí es donde se crean las verdaderas fortunas.',
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
type: 'title',
|
|
165
|
+
text: '¿Por qué el tiempo es tu mayor aliado?',
|
|
166
|
+
level: 3,
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
type: 'paragraph',
|
|
170
|
+
html: 'El factor más determinante no es la cantidad de dinero que inviertas, sino <strong>cuántos años dejes que crezca</strong>. Empezar 10 años antes puede resultar en una riqueza final 2 o 3 veces mayor, incluso si inviertes menos dinero total. Este efecto exponencial es la razón por la que los inversores jóvenes tienen una ventaja incomparable.',
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
type: 'tip',
|
|
174
|
+
title: 'La Regla del 72',
|
|
175
|
+
html: '<p>Divide 72 entre tu rentabilidad anual para saber cuántos años tardarás en <strong>duplicar tu dinero</strong>.</p><p><em>Ejemplo: Al 8%, duplicas cada 9 años (72/8 = 9).</em></p><p>Esta fórmula mágica funciona para cualquier tasa de rendimiento y te ayuda a estimar rápidamente el crecimiento de tus inversiones.</p>',
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
type: 'tip',
|
|
179
|
+
title: 'Consejo 2026',
|
|
180
|
+
html: '<p>La inflación sigue siendo un factor. Asegúrate de que tu rentabilidad neta supere al menos el 2-3% anual para no perder poder adquisitivo. Invierte en activos que crezcan más rápido que la inflación.</p>',
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
type: 'title',
|
|
184
|
+
text: 'Frecuencia de Capitalización: ¿Importa?',
|
|
185
|
+
level: 3,
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
type: 'paragraph',
|
|
189
|
+
html: 'El interés puede capitalizarse anualmente, semestralmente, trimestralmente, mensualmente o incluso diariamente. Cuanto <strong>más frecuente sea la capitalización</strong>, mayor será el efecto compuesto. Un mismo capital con la misma tasa crecerá más si el interés se compone mensualmente que si se compone anualmente.',
|
|
190
|
+
},
|
|
191
|
+
],
|
|
192
|
+
ui: {
|
|
193
|
+
labelTitle: 'Simulador de Inversión',
|
|
194
|
+
labelRealtime: 'Tiempo real',
|
|
195
|
+
labelInitial: 'Aportación Inicial',
|
|
196
|
+
labelMonthly: 'Aportación Mensual',
|
|
197
|
+
labelRate: 'R. Anual',
|
|
198
|
+
labelYears: 'Años',
|
|
199
|
+
labelMyMoney: 'Tu Dinero',
|
|
200
|
+
labelProfit: 'Beneficio (Interés)',
|
|
201
|
+
labelTotal: 'Total Acumulado',
|
|
202
|
+
labelYear: 'Año',
|
|
203
|
+
labelPrincipal: 'Tu Dinero (Principal)',
|
|
204
|
+
labelInterest: 'Intereses Generados',
|
|
205
|
+
insightPrefix: '[TIP] En el año ',
|
|
206
|
+
insightSuffix:
|
|
207
|
+
', tus intereses generados anuales superarán a tus aportaciones. ¡El dinero ya trabaja más que tú!',
|
|
208
|
+
currencySymbol: '€',
|
|
209
|
+
currencyCode: 'EUR',
|
|
210
|
+
currencyLocale: 'es-ES',
|
|
211
|
+
},
|
|
212
|
+
};
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { CompoundInterestUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'calculateur-interets-composes';
|
|
6
|
+
const title = 'Calculateur d\'Intérêts Composés | Visualisez votre Richesse Future';
|
|
7
|
+
const description =
|
|
8
|
+
'Découvrez comment de petits investissements deviennent de grandes fortunes. L\'outil définitif pour planifier votre liberté financière et votre retraite.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: 'Qu\'est-ce que l\'intérêt composé ?',
|
|
13
|
+
answer:
|
|
14
|
+
'C\'est l\'intérêt calculé sur le capital initial et également sur les intérêts accumulés des périodes précédentes. Cela génère une croissance exponentielle de l\'investissement au fil du temps.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: 'Quelle est la différence avec l\'intérêt simple ?',
|
|
18
|
+
answer:
|
|
19
|
+
"Avec l'intérêt simple, les intérêts sont calculés uniquement sur le capital initial. Avec l'intérêt composé, les intérêts sont réinvestis, ce qui signifie que 'vos intérêts génèrent plus d'intérêts'.",
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: "Qu'est-ce que la 'Règle des 72' ?",
|
|
23
|
+
answer:
|
|
24
|
+
"C'est une formule rapide pour estimer combien de temps il faudra pour doubler un investissement : divisez 72 par le taux de rendement annuel. Par exemple, à 8% par an, vous doublez votre argent en 9 ans.",
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'Pourquoi est-il important de commencer à investir jeune ?',
|
|
28
|
+
answer:
|
|
29
|
+
"En raison de l'effet exponentiel, le facteur le plus déterminant n'est pas le montant d'argent épargné, mais le temps. Commencer quelques années plus tôt peut aboutir à une richesse finale beaucoup plus grande grâce à la capitalisation.",
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howToData = [
|
|
34
|
+
{
|
|
35
|
+
name: 'Saisir le capital initial',
|
|
36
|
+
text: 'Entrez le montant d\'argent avec lequel vous allez démarrer votre plan d\'investissement.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Définir les contributions périodiques',
|
|
40
|
+
text: 'Indiquez combien d\'argent vous économiserez et investirez chaque mois en plus.',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Estimer le rendement annuel',
|
|
44
|
+
text: 'Entrez le pourcentage de bénéfice annuel que vous espérez obtenir (ex. 7% pour le S&P 500 historique).',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Ajuster l\'horizon temporel',
|
|
48
|
+
text: 'Choisissez combien d\'années vous maintiendrez l\'investissement pour visualiser la croissance exponentielle de votre capital.',
|
|
49
|
+
},
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqData.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
const howToSchema: WithContext<HowTo> = {
|
|
63
|
+
'@context': 'https://schema.org',
|
|
64
|
+
'@type': 'HowTo',
|
|
65
|
+
name: title,
|
|
66
|
+
description,
|
|
67
|
+
step: howToData.map((step, i) => ({
|
|
68
|
+
'@type': 'HowToStep',
|
|
69
|
+
position: i + 1,
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
+
'@context': 'https://schema.org',
|
|
77
|
+
'@type': 'SoftwareApplication',
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'FinanceApplication',
|
|
81
|
+
operatingSystem: 'All',
|
|
82
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
83
|
+
inLanguage: 'fr',
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export const content: ToolLocaleContent<CompoundInterestUI> = {
|
|
87
|
+
slug,
|
|
88
|
+
title,
|
|
89
|
+
description,
|
|
90
|
+
faqTitle: 'Questions Fréquentes',
|
|
91
|
+
faq: faqData,
|
|
92
|
+
bibliographyTitle: 'Sources et Références',
|
|
93
|
+
bibliography: [
|
|
94
|
+
{
|
|
95
|
+
name: 'Investopedia: Compound Interest Definition',
|
|
96
|
+
url: 'https://www.investopedia.com/terms/c/compoundinterest.asp',
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
name: 'Investopedia: Rule of 72',
|
|
100
|
+
url: 'https://www.investopedia.com/terms/r/ruleof72.asp',
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
name: 'Khan Academy: Interest and Debt',
|
|
104
|
+
url: 'https://www.khanacademy.org/economics-finance-domain/core-finance/interest-tutorial',
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
name: 'Banque de France : Éducation financière',
|
|
108
|
+
url: 'https://www.banque-france.fr/fr/la-banque-de-france/notre-mission/education-economique-financiere-et-statistique',
|
|
109
|
+
},
|
|
110
|
+
],
|
|
111
|
+
howTo: howToData,
|
|
112
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
113
|
+
seo: [
|
|
114
|
+
{
|
|
115
|
+
type: 'title',
|
|
116
|
+
text: 'La Magie de l\'Intérêt Composé : Construisez Votre Richesse Exponentiellement',
|
|
117
|
+
level: 2,
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
type: 'paragraph',
|
|
121
|
+
html: 'Albert Einstein l\'a appelée la "huitième merveille du monde". L\'<strong>intérêt composé</strong> est le mécanisme le plus puissant pour construire une richesse à long terme. Vous n\'avez pas besoin d\'être un expert en finance pour l\'utiliser : vous avez juste besoin de temps, de patience et d\'argent investi.',
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
type: 'title',
|
|
125
|
+
text: 'Intérêt Simple vs Composé : La Métaphore de la Boule de Neige',
|
|
126
|
+
level: 3,
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 'paragraph',
|
|
130
|
+
html: 'Imaginez une boule de neige au sommet d\'une colline. L\'<strong>intérêt simple</strong> est comme la faire rouler vers le bas et devoir ajouter manuellement de la neige tous les mètres pour qu\'elle grandisse. L\'<strong>intérêt composé</strong> est comme la laisser rouler seule : elle ramasse naturellement de la neige, et plus elle devient grosse, plus elle a de surface pour ramasser <em>encore plus</em> de neige à chaque rotation.',
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
type: 'comparative',
|
|
134
|
+
columns: 2,
|
|
135
|
+
items: [
|
|
136
|
+
{
|
|
137
|
+
title: 'Intérêt Simple',
|
|
138
|
+
description: 'Les intérêts sont toujours calculés sur le capital original.',
|
|
139
|
+
points: [
|
|
140
|
+
'Formule : Capital × Taux × Temps',
|
|
141
|
+
'Croissance linéaire et prévisible',
|
|
142
|
+
'Utilisé dans les prêts à court terme',
|
|
143
|
+
'Pas de réinvestissement des bénéfices',
|
|
144
|
+
],
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
title: 'Intérêt Composé',
|
|
148
|
+
description: 'Les intérêts s\'ajoutent au capital et génèrent de nouveaux intérêts.',
|
|
149
|
+
highlight: true,
|
|
150
|
+
points: [
|
|
151
|
+
'Formule : Capital × (1 + Taux)^Temps',
|
|
152
|
+
'Croissance exponentielle accélérée',
|
|
153
|
+
'Fondation de l\'investissement à long terme',
|
|
154
|
+
'Vos bénéfices génèrent plus de bénéfices',
|
|
155
|
+
],
|
|
156
|
+
},
|
|
157
|
+
],
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
type: 'paragraph',
|
|
161
|
+
html: 'Mathématiquement, vos revenus génèrent de nouveaux revenus. Au cours des premières années, cela semble lent, mais après le "point d\'inflexion", la courbe augmente verticalement. C\'est là que se créent les vraies richesses.',
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
type: 'title',
|
|
165
|
+
text: 'Pourquoi le Temps est Votre Plus Grand Allié',
|
|
166
|
+
level: 3,
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
type: 'paragraph',
|
|
170
|
+
html: 'Le facteur le plus déterminant n\'est pas le montant que vous investissez, mais <strong>combien de temps vous le laissez croître</strong>. Commencer 10 ans plus tôt peut entraîner une richesse finale 2 ou 3 fois plus importante, même si vous investissez moins au total. Cet effet exponentiel est la raison pour laquelle les jeunes investisseurs ont un avantage incomparable.',
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
type: 'tip',
|
|
174
|
+
title: 'La Règle des 72',
|
|
175
|
+
html: '<p>Divisez 72 par votre rendement annuel pour découvrir en combien d\'années vous allez <strong>doubler votre argent</strong>.</p><p><em>Exemple : À 8%, vous doublez tous les 9 ans (72/8 = 9).</em></p><p>Cette formule magique fonctionne pour n\'importe quel taux de rendement et vous aide à estimer rapidement la croissance de vos investissements.</p>',
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
type: 'tip',
|
|
179
|
+
title: 'Conseil 2026',
|
|
180
|
+
html: '<p>L\'inflation reste un facteur. Assurez-vous que vos rendements nets dépassent au moins 2-3% annuellement pour ne pas perdre votre pouvoir d\'achat. Investissez dans des actifs qui croissent plus vite que l\'inflation.</p>',
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
type: 'title',
|
|
184
|
+
text: 'Fréquence de Capitalisation : Est-ce Important?',
|
|
185
|
+
level: 3,
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
type: 'paragraph',
|
|
189
|
+
html: 'Les intérêts peuvent être composés annuellement, semestriellement, trimestriellement, mensuellement ou même quotidiennement. Plus <strong>la capitalisation est fréquente</strong>, plus l\'effet composé est important. Le même capital au même taux croîtra davantage si les intérêts sont composés mensuellement plutôt qu\'annuellement.',
|
|
190
|
+
},
|
|
191
|
+
],
|
|
192
|
+
ui: {
|
|
193
|
+
labelTitle: 'Simulateur d\'Investissement',
|
|
194
|
+
labelRealtime: 'Temps réel',
|
|
195
|
+
labelInitial: 'Capital Initial',
|
|
196
|
+
labelMonthly: 'Versement Mensuel',
|
|
197
|
+
labelRate: 'R. Annuel',
|
|
198
|
+
labelYears: 'Années',
|
|
199
|
+
labelMyMoney: 'Votre Argent',
|
|
200
|
+
labelProfit: 'Bénéfice (Intérêt)',
|
|
201
|
+
labelTotal: 'Total Accumulé',
|
|
202
|
+
labelYear: 'Année',
|
|
203
|
+
labelPrincipal: 'Votre Argent (Principal)',
|
|
204
|
+
labelInterest: 'Intérêts Générés',
|
|
205
|
+
insightPrefix: '[TIP] En l\'année ',
|
|
206
|
+
insightSuffix:
|
|
207
|
+
', vos intérêts annuels générés dépasseront vos versements. L\'argent travaille plus que vous !',
|
|
208
|
+
currencySymbol: '€',
|
|
209
|
+
currencyCode: 'EUR',
|
|
210
|
+
currencyLocale: 'fr-FR',
|
|
211
|
+
},
|
|
212
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { FinanceToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
+
import CompoundInterestComponent from './component.astro';
|
|
3
|
+
import CompoundInterestSEO from './seo.astro';
|
|
4
|
+
import CompoundInterestBibliography from './bibliography.astro';
|
|
5
|
+
|
|
6
|
+
import type { CompoundInterestUI } from './ui';
|
|
7
|
+
|
|
8
|
+
export type CompoundInterestLocaleContent = ToolLocaleContent<CompoundInterestUI>;
|
|
9
|
+
|
|
10
|
+
import { content as es } from './i18n/es';
|
|
11
|
+
import { content as en } from './i18n/en';
|
|
12
|
+
import { content as fr } from './i18n/fr';
|
|
13
|
+
|
|
14
|
+
export const compoundInterest: FinanceToolEntry<CompoundInterestUI> = {
|
|
15
|
+
id: 'interes-compuesto',
|
|
16
|
+
icons: {
|
|
17
|
+
bg: 'mdi:chart-line',
|
|
18
|
+
fg: 'mdi:trending-up',
|
|
19
|
+
},
|
|
20
|
+
i18n: {
|
|
21
|
+
es: async () => es,
|
|
22
|
+
en: async () => en,
|
|
23
|
+
fr: async () => fr,
|
|
24
|
+
},
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export { CompoundInterestComponent, CompoundInterestSEO, CompoundInterestBibliography };
|
|
28
|
+
|
|
29
|
+
export const COMPOUND_INTEREST_TOOL: ToolDefinition = {
|
|
30
|
+
entry: compoundInterest,
|
|
31
|
+
Component: CompoundInterestComponent,
|
|
32
|
+
SEOComponent: CompoundInterestSEO,
|
|
33
|
+
BibliographyComponent: CompoundInterestBibliography,
|
|
34
|
+
};
|