@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
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jjlmoya/utils-finance",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./src/index.ts",
|
|
6
|
+
"types": "./src/index.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./src/index.ts",
|
|
9
|
+
"./data": "./src/data.ts"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"src"
|
|
13
|
+
],
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"dev": "astro dev",
|
|
19
|
+
"start": "astro dev",
|
|
20
|
+
"build": "astro build",
|
|
21
|
+
"preview": "astro preview",
|
|
22
|
+
"astro": "astro",
|
|
23
|
+
"lint": "eslint src/ --max-warnings 0 && stylelint \"src/**/*.{css,astro}\"",
|
|
24
|
+
"check": "astro check",
|
|
25
|
+
"type-check": "astro check",
|
|
26
|
+
"test": "vitest run",
|
|
27
|
+
"preversion": "npm run lint && npm run test",
|
|
28
|
+
"postversion": "git push && git push --tags",
|
|
29
|
+
"patch": "npm version patch",
|
|
30
|
+
"minor": "npm version minor",
|
|
31
|
+
"major": "npm version major"
|
|
32
|
+
},
|
|
33
|
+
"lint-staged": {
|
|
34
|
+
"*.{ts,tsx,astro}": [
|
|
35
|
+
"eslint --fix"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@iconify-json/mdi": "^1.2.3",
|
|
40
|
+
"@jjlmoya/utils-shared": "1.2.0",
|
|
41
|
+
"astro": "^6.1.2",
|
|
42
|
+
"astro-icon": "^1.1.0",
|
|
43
|
+
"chart.js": "^4.5.1",
|
|
44
|
+
"date-fns": "^4.1.0",
|
|
45
|
+
"html2canvas": "^1.4.1",
|
|
46
|
+
"jspdf": "^4.2.1"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@astrojs/check": "^0.9.8",
|
|
50
|
+
"eslint": "^9.39.4",
|
|
51
|
+
"eslint-plugin-astro": "^1.6.0",
|
|
52
|
+
"eslint-plugin-no-comments": "^1.1.10",
|
|
53
|
+
"husky": "^9.1.7",
|
|
54
|
+
"lint-staged": "^16.4.0",
|
|
55
|
+
"postcss-html": "^1.8.1",
|
|
56
|
+
"schema-dts": "^1.1.2",
|
|
57
|
+
"stylelint": "^17.6.0",
|
|
58
|
+
"stylelint-config-standard": "^40.0.0",
|
|
59
|
+
"stylelint-declaration-strict-value": "^1.11.1",
|
|
60
|
+
"typescript": "^5.4.0",
|
|
61
|
+
"typescript-eslint": "^8.58.0",
|
|
62
|
+
"vitest": "^4.1.2"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const content: CategoryLocaleContent = {
|
|
4
|
+
slug: 'finance',
|
|
5
|
+
title: 'Precision Financial Tools & Calculators',
|
|
6
|
+
description:
|
|
7
|
+
'Optimize your finances with free online tools. Mortgage simulators, compound interest calculator, rent updates and late payment interest updated for 2026.',
|
|
8
|
+
seo: [
|
|
9
|
+
{
|
|
10
|
+
type: 'title',
|
|
11
|
+
text: 'Personal Financial Engineering: Decisions Based on Mathematics',
|
|
12
|
+
level: 2,
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
type: 'paragraph',
|
|
16
|
+
html: 'Financial freedom is not achieved through luck, but through planning and the use of <strong>precise analytical tools</strong>. In this section, we offer a suite of <strong>free online calculators</strong> designed to demystify complex banking, tax and legal processes. Understanding the time value of money and the impact of interest rates is fundamental for any saver or investor in 2026.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
type: 'paragraph',
|
|
20
|
+
html: 'From calculating the impact of historical inflation to technical validation of international IBAN codes, our utilities apply standardized financial formulas so you maintain full control of your capital.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
type: 'title',
|
|
24
|
+
text: 'Investment & Wealth: The Power of Compound Interest',
|
|
25
|
+
level: 2,
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
type: 'paragraph',
|
|
29
|
+
html: 'Considered by Einstein as the eighth wonder of the world, <strong>compound interest</strong> is the key to long-term wealth growth. Our calculator lets you visualize how reinvesting returns generates exponential growth, helping you define realistic savings goals based on your risk profile.',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
type: 'paragraph',
|
|
33
|
+
html: 'To contextualize your savings, the <strong>historical inflation</strong> simulator translates the purchasing power of past eras into current values, letting you understand how much value your money has really lost.',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
type: 'title',
|
|
37
|
+
text: 'Home Finance: Mortgages and Rent',
|
|
38
|
+
level: 2,
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
type: 'paragraph',
|
|
42
|
+
html: 'Housing is usually the largest expense in a household budget. The <strong>mortgage simulator</strong> generates complete amortization tables, letting you anticipate the impact of interest rate changes. For tenants, the <strong>rent update calculator</strong> applies current legal limits to ensure your rent complies with the law.',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
type: 'title',
|
|
46
|
+
text: 'Financial Law & Late Payment Interest',
|
|
47
|
+
level: 2,
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
type: 'paragraph',
|
|
51
|
+
html: 'In the legal and tax domain, deadlines and percentages are critical. We provide updated tools to calculate the <strong>legal interest rate (3.25% in 2026)</strong> and late payment interest for civil or tax debts, preventing unnecessary surcharges from lack of information.',
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
type: 'title',
|
|
55
|
+
text: 'Banking Data & Percentages Management',
|
|
56
|
+
level: 2,
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
type: 'paragraph',
|
|
60
|
+
html: 'Day-to-day operations require speed. The <strong>IBAN to BIC/SWIFT converter</strong> validates your account structure for safe international transfers, while our advanced percentage calculator solves bulk variations, proportions and automatic VAT calculations.',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
type: 'list',
|
|
64
|
+
items: [
|
|
65
|
+
'<strong>Updated Data:</strong> Interest rates, CPI limits and tax variables revised for 2026.',
|
|
66
|
+
'<strong>Full Privacy:</strong> Your personal financial data is processed strictly in the browser with no server storage.',
|
|
67
|
+
'<strong>Mathematical Rigor:</strong> Amortization and real interest calculation algorithms following European banking standards.',
|
|
68
|
+
'<strong>Legal Transparency:</strong> Tools adapted to current legislation.',
|
|
69
|
+
],
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
type: 'tip',
|
|
73
|
+
title: 'Strategic Savings Advice',
|
|
74
|
+
html: '<p><strong>2026 Strategy:</strong> In a persistent inflation environment, keeping cash idle is a guaranteed loss. Use the compound interest simulator to evaluate how small increases in return rate dramatically impact your retirement.</p>',
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
type: 'title',
|
|
78
|
+
text: 'Diversification & Risk Management: Optimal Portfolio',
|
|
79
|
+
level: 2,
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
type: 'paragraph',
|
|
83
|
+
html: 'Risk cannot be eliminated, but it can be managed. Diversification is the fundamental strategy: do not put all your eggs in one basket. Our tools let you model a hypothetical portfolio with different proportions (60% stocks, 30% bonds, 10% cash) and project its historical performance under different market scenarios.',
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
type: 'title',
|
|
87
|
+
text: 'Profitability Analysis: ROI and Payback Period',
|
|
88
|
+
level: 2,
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
type: 'paragraph',
|
|
92
|
+
html: 'Not all investments are equal. An investment that returns 5% annually but takes 10 years to break even is different from one that returns 10% in 2 years. Our ROI (Return on Investment) and payback period calculators let you compare opportunities objectively. A freelancer investing in a $500 tool that saves 10 hours a week should calculate whether it pays off in 6 months or 2 years.',
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
type: 'title',
|
|
96
|
+
text: 'Taxation & Deductions: Tax Optimization',
|
|
97
|
+
level: 2,
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
type: 'paragraph',
|
|
101
|
+
html: "Taxes consume more than half of many people's wealth. Knowing which expenses are deductible, which investments generate deferred taxes (pension plans) and how to claim refunds is the difference between being a passive and an active taxpayer.",
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
type: 'title',
|
|
105
|
+
text: 'Cryptocurrencies & Digital Assets: Conversion and Valuation',
|
|
106
|
+
level: 2,
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'paragraph',
|
|
110
|
+
html: 'The future of finance includes digital assets. Our cryptocurrency converter lets you calculate real-time valuations for Bitcoin, Ethereum and stablecoins, facilitating decision-making without depending on opaque third-party applications.',
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
type: 'title',
|
|
114
|
+
text: 'Early Retirement Planning: FIRE (Financial Independence, Retire Early)',
|
|
115
|
+
level: 2,
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
type: 'paragraph',
|
|
119
|
+
html: 'Most people work until 65 by default. The <strong>FIRE early retirement calculator</strong> uses the 4% rule (you can spend 4% of your capital annually indefinitely) to calculate how much capital you need to accumulate. If you spend $30,000/year, you need $750,000 saved ($30,000 ÷ 0.04).',
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
type: 'title',
|
|
123
|
+
text: 'Inflation-Adjusted Returns and Real Profitability',
|
|
124
|
+
level: 2,
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
type: 'paragraph',
|
|
128
|
+
html: 'Your investment returned 7% last year. Sounds good. But if inflation was 5%, your real return was only 2%. Our <strong>real return calculator</strong> adjusts returns for historical or projected inflation, showing the true purchasing power of your investment.',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
type: 'title',
|
|
132
|
+
text: 'Transaction Costs and Investment Fees',
|
|
133
|
+
level: 2,
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
type: 'paragraph',
|
|
137
|
+
html: 'Every stock purchase has a commission. If you invest $1,000 and pay 1% commission, you only invested $990. Over a 30-year horizon, these commissions significantly erode your final return. Our <strong>fee impact analyzer</strong> shows how different cost structures affect your return.',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
type: 'title',
|
|
141
|
+
text: 'Towards Personal Financial Sovereignty',
|
|
142
|
+
level: 2,
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
type: 'paragraph',
|
|
146
|
+
html: 'The future of finance is <strong>self-custody and technical understanding</strong>. Trusting what the bank says is no longer enough. These tools give you the ability to audit every cent, every interest charge and every contract, letting you navigate the financial system with the confidence that mathematical knowledge provides.',
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
type: 'stats',
|
|
150
|
+
items: [
|
|
151
|
+
{ value: '3.25%', label: 'Legal Interest', icon: 'mdi:bank' },
|
|
152
|
+
{ value: 'Historical', label: 'Inflation', icon: 'mdi:trending-up' },
|
|
153
|
+
{ value: 'Technical', label: 'Amortization', icon: 'mdi:calculator' },
|
|
154
|
+
{ value: 'Exponential', label: 'Investment', icon: 'mdi:chart-line' },
|
|
155
|
+
],
|
|
156
|
+
columns: 2,
|
|
157
|
+
},
|
|
158
|
+
],
|
|
159
|
+
};
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const content: CategoryLocaleContent = {
|
|
4
|
+
slug: 'finanzas',
|
|
5
|
+
title: 'Herramientas y Calculadoras Financieras de Precisión',
|
|
6
|
+
description:
|
|
7
|
+
'Optimiza tus finanzas con herramientas gratuitas online. Simuladores de hipotecas, cálculo de interés compuesto, actualización de alquileres e intereses de demora actualizados a 2026.',
|
|
8
|
+
seo: [
|
|
9
|
+
{
|
|
10
|
+
type: 'title',
|
|
11
|
+
text: 'Ingeniería Financiera Personal: Decisiones Basadas en Matemáticas',
|
|
12
|
+
level: 2,
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
type: 'paragraph',
|
|
16
|
+
html: 'La libertad financiera no se consigue con suerte, sino con planificación y el uso de <strong>herramientas analíticas precisas</strong>. En esta sección, ofrecemos una suite de <strong>calculadoras gratuitas online</strong> diseñadas para desmitificar procesos bancarios, fiscales y legales complejos. Entender el valor del dinero en el tiempo y el impacto de los tipos de interés es fundamental para cualquier ahorrador o inversor en 2026.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
type: 'paragraph',
|
|
20
|
+
html: 'Desde el cálculo del impacto de la inflación histórica hasta la validación técnica de códigos IBAN internacionales, nuestras utilidades aplican fórmulas financieras estandarizadas para que mantengas el control total de tu capital.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
type: 'title',
|
|
24
|
+
text: 'Inversión y Patrimonio: El Poder del Interés Compuesto',
|
|
25
|
+
level: 2,
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
type: 'paragraph',
|
|
29
|
+
html: 'Considerado por Einstein como la octava maravilla del mundo, el <strong>interés compuesto</strong> es la clave del crecimiento patrimonial a largo plazo. Nuestra calculadora permite visualizar cómo la reinversión de beneficios genera un crecimiento exponencial, ayudándote a definir objetivos de ahorro realistas basados en tu perfil de riesgo.',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
type: 'paragraph',
|
|
33
|
+
html: 'Para contextualizar tus ahorros, el simulador de <strong>inflación histórica</strong> traduce el poder adquisitivo de épocas pasadas a euros actuales, permitiéndote entender cuánto valor ha perdido realmente tu dinero desde 1980 hasta las proyecciones de 2026.',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
type: 'title',
|
|
37
|
+
text: 'Finanzas del Hogar: Hipotecas y Alquileres',
|
|
38
|
+
level: 2,
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
type: 'paragraph',
|
|
42
|
+
html: 'La vivienda suele ser el mayor gasto de una economía doméstica. El <strong>simulador de hipotecas</strong> genera tablas de amortización completas, permitiéndote prever el impacto de las variaciones del Euríbor. Para los inquilinos, la calculadora de <strong>actualización de alquileres</strong> aplica los límites legales vigentes (como el tope del 3% de la Ley de Vivienda) para asegurar que tu renta se ajuste a la legalidad.',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
type: 'title',
|
|
46
|
+
text: 'Legalidad Financiera e Intereses de Demora',
|
|
47
|
+
level: 2,
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
type: 'paragraph',
|
|
51
|
+
html: 'En el ámbito legal y tributario, los plazos y porcentajes son críticos. Proporcionamos herramientas actualizadas para calcular el <strong>interés legal del dinero (3,25% en 2026)</strong> y los intereses de demora para deudas civiles o con Hacienda, evitando que pagues recargos innecesarios por falta de información.',
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
type: 'title',
|
|
55
|
+
text: 'Gestión de Datos Bancarios y Porcentajes',
|
|
56
|
+
level: 2,
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
type: 'paragraph',
|
|
60
|
+
html: 'La operativa diaria requiere rapidez. El <strong>conversor de IBAN a BIC/SWIFT</strong> valida la estructura de tus cuentas para transferencias internacionales seguras, mientras que nuestra calculadora de porcentajes avanzada soluciona de forma masiva variaciones, proporciones y sumas de IVA automáticas.',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
type: 'list',
|
|
64
|
+
items: [
|
|
65
|
+
'<strong>Datos Actualizados:</strong> Tasas de interés, límites de IPC y variables fiscales revisadas para el ejercicio 2026.',
|
|
66
|
+
'<strong>Privacidad Total:</strong> Tus datos financieros personales se procesan estrictamente en el navegador sin almacenamiento en servidores.',
|
|
67
|
+
'<strong>Rigor Matemático:</strong> Algoritmos de amortización y cálculo de interés real siguiendo estándares bancarios europeos.',
|
|
68
|
+
'<strong>Transparencia Legal:</strong> Herramientas adaptadas a la legislación española vigente (Ley de Vivienda, Modelos Tributarios).',
|
|
69
|
+
],
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
type: 'tip',
|
|
73
|
+
title: 'Consejo Estratégico de Ahorro',
|
|
74
|
+
html: '<p><strong>Estrategia 2026:</strong> En un entorno de inflación persistente, mantener el efectivo inactivo es una pérdida garantizada. Usa el simulador de interés compuesto para evaluar cómo pequeños aumentos en la tasa de retorno impactan drásticamente en tu jubilación.</p>',
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
type: 'title',
|
|
78
|
+
text: 'Diversificación y Gestión del Riesgo: Cartera Óptima',
|
|
79
|
+
level: 2,
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
type: 'paragraph',
|
|
83
|
+
html: 'El riesgo no puede eliminarse, pero sí gestionarse. La diversificación es la estrategia fundamental: no poner todos los huevos en la misma cesta. Nuestras herramientas permiten modelar una cartera hipotética con diferentes proporciones (60% acciones, 30% bonos, 10% efectivo) y proyectar su rendimiento histórico bajo diferentes escenarios de mercado.',
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
type: 'title',
|
|
87
|
+
text: 'Análisis de Rentabilidad: ROI y Payback Period',
|
|
88
|
+
level: 2,
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
type: 'paragraph',
|
|
92
|
+
html: 'No todas las inversiones son iguales. Una inversión que devuelve 5% anual pero tarda 10 años en rentabilizarse es diferente a una que devuelve 10% en 2 años. Nuestras calculadoras de ROI (Retorno sobre Inversión) y payback period permiten comparar oportunidades objetivamente. Un freelancer que invierte en una herramienta de €500 que le ahorra 10 horas semanales debe calcular si eso se amortiza en 6 meses o en 2 años.',
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
type: 'title',
|
|
96
|
+
text: 'Fiscalidad y Desgravaciones: Optimización Tributaria',
|
|
97
|
+
level: 2,
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
type: 'paragraph',
|
|
101
|
+
html: 'Los impuestos se comen más de la mitad de muchos patrimonios. Conocer qué gastos son deducibles, qué inversiones generan impuestos diferidos (planes de pensiones) y cómo solicitar devoluciones es la diferencia entre ser un contribuyente pasivo y uno activo.',
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
type: 'title',
|
|
105
|
+
text: 'Criptomonedas y Activos Digitales: Conversión y Valuación',
|
|
106
|
+
level: 2,
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'paragraph',
|
|
110
|
+
html: 'El futuro de las finanzas incluye activos digitales. Nuestro conversor de criptomonedas te permite calcular valuaciones en tiempo real para Bitcoin, Ethereum y stablecoins, facilitando la toma de decisiones sin depender de aplicaciones opacas de terceros.',
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
type: 'title',
|
|
114
|
+
text: 'Planificación de Retiro Anticipado: FIRE (Financial Independence, Retire Early)',
|
|
115
|
+
level: 2,
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
type: 'paragraph',
|
|
119
|
+
html: 'La mayoría trabaja hasta los 65 años por defecto. El <strong>calculador de retiro anticipado FIRE</strong> usa la regla del 4% (puedes gastar el 4% de tu capital anualmente de forma indefinida) para calcular cuánto capital necesitas acumular. Si gastas €30.000/año, necesitas €750.000 ahorrados (€30.000 ÷ 0,04).',
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
type: 'title',
|
|
123
|
+
text: 'Rentabilidad Ajustada por Inflación y Rentabilidad Real',
|
|
124
|
+
level: 2,
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
type: 'paragraph',
|
|
128
|
+
html: 'Tu inversión rendía 7% el año pasado. Suena bien. Pero si la inflación fue 5%, tu rentabilidad real fue solo 2%. Nuestro <strong>calculador de rentabilidad real</strong> ajusta los retornos por inflación histórica o proyectada, mostrando el poder adquisitivo verdadero de tu inversión.',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
type: 'title',
|
|
132
|
+
text: 'Costes de Transacción y Comisiones en Inversión',
|
|
133
|
+
level: 2,
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
type: 'paragraph',
|
|
137
|
+
html: 'Cada compra de acciones tiene una comisión. Si inviertes €1.000 y pagas 1% de comisión, invertiste solo €990. En un horizonte de 30 años, estas comisiones erosionan significativamente tu rentabilidad final. Nuestro <strong>analizador de impacto de comisiones</strong> muestra cómo diferentes estructuras de costes afectan tu retorno.',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
type: 'title',
|
|
141
|
+
text: 'Hacia una economía personal soberana',
|
|
142
|
+
level: 2,
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
type: 'paragraph',
|
|
146
|
+
html: 'El futuro de las finanzas es la <strong>auto-custodia y la comprensión técnica</strong>. Ya no basta con confiar en lo que dice el banco. Estas herramientas te dan la capacidad de auditar cada céntimo, cada interés y cada contrato, permitiéndote navegar el sistema financiero con la seguridad que da el conocimiento matemático.',
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
type: 'stats',
|
|
150
|
+
items: [
|
|
151
|
+
{ value: '3,25%', label: 'Interés Legal', icon: 'mdi:bank' },
|
|
152
|
+
{ value: 'Histórica', label: 'Inflación', icon: 'mdi:trending-up' },
|
|
153
|
+
{ value: 'Técnica', label: 'Amortización', icon: 'mdi:calculator' },
|
|
154
|
+
{ value: 'Exponencial', label: 'Inversión', icon: 'mdi:chart-line' },
|
|
155
|
+
],
|
|
156
|
+
columns: 2,
|
|
157
|
+
},
|
|
158
|
+
],
|
|
159
|
+
};
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
import type { CategoryLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const content: CategoryLocaleContent = {
|
|
4
|
+
slug: 'finances',
|
|
5
|
+
title: 'Outils et Calculateurs Financiers de Précision',
|
|
6
|
+
description:
|
|
7
|
+
'Optimisez vos finances avec des outils gratuits en ligne. Simulateurs de crédit, calcul des intérêts composés, actualisation des loyers et intérêts de retard mis à jour pour 2026.',
|
|
8
|
+
seo: [
|
|
9
|
+
{
|
|
10
|
+
type: 'title',
|
|
11
|
+
text: "Ingénierie Financière Personnelle : Décisions Basées sur les Mathématiques",
|
|
12
|
+
level: 2,
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
type: 'paragraph',
|
|
16
|
+
html: "La liberté financière ne s'obtient pas par chance, mais par planification et l'utilisation d'<strong>outils analytiques précis</strong>. Dans cette section, nous proposons une suite de <strong>calculateurs gratuits en ligne</strong> conçus pour démystifier les processus bancaires, fiscaux et juridiques complexes. Comprendre la valeur temporelle de l'argent et l'impact des taux d'intérêt est fondamental pour tout épargnant ou investisseur en 2026.",
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
type: 'paragraph',
|
|
20
|
+
html: "Du calcul de l'impact de l'inflation historique à la validation technique des codes IBAN internationaux, nos utilitaires appliquent des formules financières standardisées pour que vous mainteniez un contrôle total de votre capital.",
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
type: 'title',
|
|
24
|
+
text: "Investissement et Patrimoine : Le Pouvoir des Intérêts Composés",
|
|
25
|
+
level: 2,
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
type: 'paragraph',
|
|
29
|
+
html: "Considéré par Einstein comme la huitième merveille du monde, les <strong>intérêts composés</strong> sont la clé de la croissance patrimoniale à long terme. Notre calculateur vous permet de visualiser comment le réinvestissement des bénéfices génère une croissance exponentielle, vous aidant à définir des objectifs d'épargne réalistes.",
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
type: 'paragraph',
|
|
33
|
+
html: "Pour contextualiser votre épargne, le simulateur d'<strong>inflation historique</strong> traduit le pouvoir d'achat des époques passées en valeurs actuelles, vous permettant de comprendre combien de valeur votre argent a réellement perdu.",
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
type: 'title',
|
|
37
|
+
text: 'Finances du Foyer : Prêts Immobiliers et Loyers',
|
|
38
|
+
level: 2,
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
type: 'paragraph',
|
|
42
|
+
html: "Le logement est généralement la plus grande dépense d'un budget familial. Le <strong>simulateur de crédit immobilier</strong> génère des tableaux d'amortissement complets, vous permettant d'anticiper l'impact des variations de taux. Pour les locataires, la calculatrice de <strong>révision des loyers</strong> applique les plafonds légaux en vigueur.",
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
type: 'title',
|
|
46
|
+
text: 'Droit Financier et Intérêts de Retard',
|
|
47
|
+
level: 2,
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
type: 'paragraph',
|
|
51
|
+
html: "Dans le domaine juridique et fiscal, les délais et pourcentages sont critiques. Nous fournissons des outils mis à jour pour calculer le <strong>taux d'intérêt légal (3,25% en 2026)</strong> et les intérêts de retard pour les dettes civiles ou fiscales.",
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
type: 'title',
|
|
55
|
+
text: 'Gestion des Données Bancaires et Pourcentages',
|
|
56
|
+
level: 2,
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
type: 'paragraph',
|
|
60
|
+
html: "Les opérations quotidiennes nécessitent de la rapidité. Le <strong>convertisseur IBAN vers BIC/SWIFT</strong> valide la structure de vos comptes pour des transferts internationaux sécurisés, tandis que notre calculateur de pourcentages avancé résout les variations en masse, proportions et calculs de TVA automatiques.",
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
type: 'list',
|
|
64
|
+
items: [
|
|
65
|
+
'<strong>Données Actualisées :</strong> Taux d\'intérêt, limites IPC et variables fiscales révisées pour 2026.',
|
|
66
|
+
'<strong>Confidentialité Totale :</strong> Vos données financières personnelles sont traitées strictement dans le navigateur sans stockage serveur.',
|
|
67
|
+
'<strong>Rigueur Mathématique :</strong> Algorithmes d\'amortissement et de calcul des intérêts réels suivant les normes bancaires européennes.',
|
|
68
|
+
'<strong>Transparence Juridique :</strong> Outils adaptés à la législation en vigueur.',
|
|
69
|
+
],
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
type: 'tip',
|
|
73
|
+
title: "Conseil Stratégique d'Épargne",
|
|
74
|
+
html: "<p><strong>Stratégie 2026 :</strong> Dans un environnement d'inflation persistante, garder des liquidités inactives est une perte garantie. Utilisez le simulateur d'intérêts composés pour évaluer comment de petites augmentations du taux de rendement impactent drastiquement votre retraite.</p>",
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
type: 'title',
|
|
78
|
+
text: 'Diversification et Gestion du Risque : Portefeuille Optimal',
|
|
79
|
+
level: 2,
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
type: 'paragraph',
|
|
83
|
+
html: "Le risque ne peut pas être éliminé, mais il peut être géré. La diversification est la stratégie fondamentale : ne pas mettre tous ses œufs dans le même panier. Nos outils permettent de modéliser un portefeuille hypothétique avec différentes proportions (60% actions, 30% obligations, 10% liquidités).",
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
type: 'title',
|
|
87
|
+
text: 'Analyse de Rentabilité : ROI et Période de Récupération',
|
|
88
|
+
level: 2,
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
type: 'paragraph',
|
|
92
|
+
html: "Tous les investissements ne se valent pas. Nos calculateurs de ROI (Retour sur Investissement) et de période de récupération permettent de comparer les opportunités objectivement. Un freelance qui investit €500 dans un outil qui lui fait économiser 10 heures par semaine doit calculer si cela s'amortit en 6 mois ou 2 ans.",
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
type: 'title',
|
|
96
|
+
text: 'Fiscalité et Déductions : Optimisation Fiscale',
|
|
97
|
+
level: 2,
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
type: 'paragraph',
|
|
101
|
+
html: "Les impôts représentent plus de la moitié du patrimoine de nombreuses personnes. Savoir quelles dépenses sont déductibles, quels investissements génèrent des impôts différés (plans d'épargne retraite) et comment demander des remboursements est la différence entre être un contribuable passif et actif.",
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
type: 'title',
|
|
105
|
+
text: 'Cryptomonnaies et Actifs Numériques : Conversion et Valorisation',
|
|
106
|
+
level: 2,
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'paragraph',
|
|
110
|
+
html: "L'avenir de la finance inclut les actifs numériques. Notre convertisseur de cryptomonnaies vous permet de calculer des valorisations en temps réel pour Bitcoin, Ethereum et les stablecoins.",
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
type: 'title',
|
|
114
|
+
text: 'Planification de la Retraite Anticipée : FIRE',
|
|
115
|
+
level: 2,
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
type: 'paragraph',
|
|
119
|
+
html: "La majorité des gens travaillent jusqu'à 65 ans par défaut. Le <strong>calculateur de retraite anticipée FIRE</strong> utilise la règle des 4% pour calculer le capital nécessaire. Si vous dépensez €30.000/an, vous avez besoin de €750.000 épargnés (€30.000 ÷ 0,04).",
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
type: 'title',
|
|
123
|
+
text: 'Rendement Ajusté à l\'Inflation et Rentabilité Réelle',
|
|
124
|
+
level: 2,
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
type: 'paragraph',
|
|
128
|
+
html: "Votre investissement a rapporté 7% l'année dernière. Cela semble bien. Mais si l'inflation était de 5%, votre rendement réel n'était que de 2%. Notre <strong>calculateur de rendement réel</strong> ajuste les rendements par l'inflation historique ou projetée.",
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
type: 'title',
|
|
132
|
+
text: "Coûts de Transaction et Commissions d'Investissement",
|
|
133
|
+
level: 2,
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
type: 'paragraph',
|
|
137
|
+
html: "Chaque achat d'actions a une commission. Si vous investissez €1.000 et payez 1% de commission, vous n'avez investi que €990. Sur un horizon de 30 ans, ces commissions érodent significativement votre rendement final.",
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
type: 'title',
|
|
141
|
+
text: 'Vers une Économie Personnelle Souveraine',
|
|
142
|
+
level: 2,
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
type: 'paragraph',
|
|
146
|
+
html: "L'avenir de la finance, c'est <strong>l'auto-garde et la compréhension technique</strong>. Se fier uniquement à ce que dit la banque ne suffit plus. Ces outils vous donnent la capacité d'auditer chaque centime, chaque intérêt et chaque contrat.",
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
type: 'stats',
|
|
150
|
+
items: [
|
|
151
|
+
{ value: '3,25%', label: 'Intérêt Légal', icon: 'mdi:bank' },
|
|
152
|
+
{ value: 'Historique', label: 'Inflation', icon: 'mdi:trending-up' },
|
|
153
|
+
{ value: 'Technique', label: 'Amortissement', icon: 'mdi:calculator' },
|
|
154
|
+
{ value: 'Exponentiel', label: 'Investissement', icon: 'mdi:chart-line' },
|
|
155
|
+
],
|
|
156
|
+
columns: 2,
|
|
157
|
+
},
|
|
158
|
+
],
|
|
159
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { FinanceCategoryEntry } from '../types';
|
|
2
|
+
import { compoundInterest } from '../tool/compoundInterest';
|
|
3
|
+
import { mortgage } from '../tool/mortgage';
|
|
4
|
+
import { inflation } from '../tool/inflation';
|
|
5
|
+
import { percentageCalculator } from '../tool/percentageCalculator';
|
|
6
|
+
import { lateInterest } from '../tool/lateInterest';
|
|
7
|
+
import { ibanBicSwift } from '../tool/ibanBicSwiftConverter';
|
|
8
|
+
import { rentIncrease } from '../tool/rentIncreaseCalculator';
|
|
9
|
+
import { lotteryOptimizer } from '../tool/lotteryOptimizer';
|
|
10
|
+
import { courtFeeCalculator } from '../tool/courtFeeCalculator';
|
|
11
|
+
import { legalInterestRate } from '../tool/legalInterestRate';
|
|
12
|
+
import { fireCalculator } from '../tool/fireCalculator';
|
|
13
|
+
import { debtSnowball } from '../tool/debtSnowball';
|
|
14
|
+
|
|
15
|
+
export const financeCategory: FinanceCategoryEntry = {
|
|
16
|
+
icon: 'mdi:finance',
|
|
17
|
+
tools: [compoundInterest, mortgage, inflation, percentageCalculator, lateInterest, ibanBicSwift, rentIncrease, lotteryOptimizer, courtFeeCalculator, legalInterestRate, fireCalculator, debtSnowball],
|
|
18
|
+
i18n: {
|
|
19
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
20
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
21
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
22
|
+
},
|
|
23
|
+
};
|
|
24
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { SEORenderer } from '@jjlmoya/utils-shared';
|
|
3
|
+
import { financeCategory } from './index';
|
|
4
|
+
import type { KnownLocale } from '../types';
|
|
5
|
+
|
|
6
|
+
interface Props {
|
|
7
|
+
locale?: KnownLocale;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const { locale = 'es' } = Astro.props;
|
|
11
|
+
const content = await financeCategory.i18n[locale]?.();
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
{content && <SEORenderer content={{ locale, sections: content.seo }} />}
|
|
15
|
+
|