-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (58 loc) · 3.06 KB
/
index.html
File metadata and controls
63 lines (58 loc) · 3.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="icon" href="/favicon.png" type="image/png" sizes="32x32">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary SEO -->
<title>GreenLight — Personal Finance Calculator</title>
<meta name="description" content="GreenLight — Free, privacy-first personal finance calculator. See your complete financial picture, plan purchases, compare mortgages, and understand your tax situation. No account needed, runs entirely in your browser." />
<meta name="keywords" content="personal finance, mortgage calculator, purchase planning, tax calculator, asset tracking, net worth, capital gains, purchase readiness" />
<link rel="canonical" href="https://gotthegreenlight.com/" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gotthegreenlight.com/" />
<meta property="og:title" content="GreenLight — Personal Finance Calculator" />
<meta property="og:description" content="Know exactly when all the math turns green. Free, private, browser-only financial calculator." />
<meta property="og:image" content="https://gotthegreenlight.com/og-image.png" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="GreenLight — Personal Finance Calculator" />
<meta name="twitter:description" content="Know exactly when all the math turns green." />
<meta name="twitter:image" content="https://gotthegreenlight.com/og-image.png" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "GreenLight",
"description": "Privacy-first personal finance calculator that runs entirely in your browser. No account required.",
"applicationCategory": "FinanceApplication",
"operatingSystem": "Web",
"url": "https://gotthegreenlight.com/",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Progressive tax engine with all 50 US states",
"Mortgage calculator with amortization, PMI analysis, and discount-point break-even",
"Lender comparison with opportunity-cost adjustment",
"Purchase planning for homes and vehicles",
"Real-time prices via Yahoo Finance (stocks), Gemini and CoinGecko (crypto), with Finnhub fallback",
"Fidelity CSV import",
"No account required — all data stored locally"
]
}
</script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&display=swap" rel="stylesheet" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>