-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) · 2.49 KB
/
Copy pathindex.html
File metadata and controls
48 lines (45 loc) · 2.49 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Run a full statistical analysis on your CSV without uploading it to any server. Your data stays in your browser." />
<meta name="theme-color" content="#020617" />
<title>NiftyStats, browser-native statistical analysis</title>
<!--
Open Graph + Twitter card meta. Both reference the same 1200x630 image
so previews render consistently across LinkedIn, X, Discord, Slack, and
messengers. Absolute URLs are required (relative ones break in social
previews).
-->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="NiftyStats" />
<meta property="og:title" content="NiftyStats, statistics for the rest of us." />
<meta property="og:description" content="Drop a CSV. Get plain-English statistical insights. Runs entirely in your browser, your data never leaves the page." />
<meta property="og:url" content="https://igorcsis.github.io/niftystats/" />
<meta property="og:image" content="https://igorcsis.github.io/niftystats/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="NiftyStats wordmark, the tagline 'Statistics for the rest of us.', and a privacy badge reading 'Your data never leaves your browser.'" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="NiftyStats" />
<meta name="twitter:description" content="Drop a CSV. Get plain-English statistical insights. Runs entirely in your browser." />
<meta name="twitter:image" content="https://igorcsis.github.io/niftystats/og-image.png" />
<!--
Inter for UI text, JetBrains Mono for numbers. Self-hosted in a future
pass via Fontsource, but Google Fonts is fine for now and keeps the
initial bundle small.
-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>