You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improve accessibility, add categories, and enhance SEO
Accessibility fixes (medium/low priority):
- Add keyboard navigation to TipCalculator table rows
- Add ARIA labels to MetricCard, Alert SVGs
- Improve footer semantic structure (nav instead of h3)
- Add aria-hidden to decorative breadcrumb icons
Categories and navigation:
- Create Automotive category (EV vs Gas, Buy vs Lease, CO2)
- Update Health category with new calculators
- Add Automotive to main calculators index
- Add 3 new calculators to homepage
SEO improvements:
- Internal linking between related calculators
- Optimize meta descriptions for loan and tip calculators
- Update calculator counts in index
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
const title ='Automotive Calculators | EV vs Gas, Car Costs & More';
13
+
const description =
14
+
'Free automotive calculators to compare EV vs gas costs, calculate car expenses, and make smarter vehicle decisions. Save money on your next car purchase.';
15
+
const keywords =
16
+
'ev vs gas calculator, electric car cost calculator, car cost comparison, ev savings calculator, car buy vs lease, fuel cost calculator, automotive calculator';
17
+
const canonicalURL ='/calculators/automotive/';
18
+
19
+
const calculators = [
20
+
{
21
+
title: 'EV vs Gas Calculator',
22
+
description: 'Compare total cost of ownership between electric and gas vehicles over time.',
23
+
href: '/calculators/ev-vs-gas-calculator',
24
+
icon: 'bolt',
25
+
color: 'green',
26
+
},
27
+
{
28
+
title: 'Car Buy vs Lease Calculator',
29
+
description: 'Decide whether buying or leasing makes more financial sense for you.',
30
+
href: '/calculators/car-buy-vs-lease-calculator',
31
+
icon: 'swap',
32
+
color: 'blue',
33
+
},
34
+
{
35
+
title: 'CO2 Calculator',
36
+
description: 'Calculate your carbon footprint from driving and other activities.',
37
+
href: '/calculators/co2-calculator',
38
+
icon: 'leaf',
39
+
color: 'green',
40
+
},
41
+
];
42
+
---
43
+
44
+
<CategoryLayout
45
+
category={category}
46
+
title={title}
47
+
description={description}
48
+
keywords={keywords}
49
+
canonicalURL={canonicalURL}
50
+
icon="bolt"
51
+
color="green"
52
+
tagline="Make smarter vehicle decisions with data-driven calculations"
53
+
calculators={calculators}
54
+
>
55
+
<p>
56
+
Our automotive calculators help you make informed decisions about vehicle ownership. Whether
57
+
you're considering an electric vehicle, deciding between buying or leasing, or tracking your
58
+
carbon footprint, these tools provide the data you need.
59
+
</p>
60
+
<p>
61
+
The EV vs Gas calculator accounts for purchase price, fuel/electricity costs, maintenance,
62
+
insurance, and available tax credits to give you a complete picture of ownership costs over
63
+
time.
64
+
</p>
65
+
<h3>Key Considerations When Comparing Vehicles</h3>
66
+
<ul>
67
+
<li>
68
+
<strong>Total Cost of Ownership:</strong> Include purchase price, fuel, maintenance, insurance,
69
+
and depreciation
70
+
</li>
71
+
<li>
72
+
<strong>EV Tax Credits:</strong> Federal credits up to $7,500 (US) can significantly reduce EV purchase
73
+
costs
74
+
</li>
75
+
<li>
76
+
<strong>Electricity Rates:</strong> Home charging is typically 3-4x cheaper than public fast charging
77
+
</li>
78
+
<li>
79
+
<strong>Maintenance Savings:</strong> EVs have fewer moving parts, resulting in lower maintenance
80
+
costs
81
+
</li>
82
+
<li>
83
+
<strong>Break-Even Point:</strong> The time it takes for an EV's lower operating costs to offset
84
+
its higher purchase price
85
+
</li>
86
+
</ul>
87
+
<pclass="text-sm mt-4 text-[var(--color-muted)]">
88
+
<em>
89
+
Note: Actual costs vary based on your location, driving habits, electricity rates, and
90
+
specific vehicle models. Use these calculators as a starting point for your research.
0 commit comments