-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (76 loc) · 4.46 KB
/
index.html
File metadata and controls
81 lines (76 loc) · 4.46 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Zeckendorf Webapp - Browser-Based File Compression</title>
<meta name="description" content="Free, open-source web application for compressing and decompressing files using the Zeckendorf representation algorithm. All processing happens locally in your browser—no data is uploaded to any server." />
<meta name="author" content="Peter Ryszkiewicz" />
<meta name="keywords" content="zeckendorf compression, fibonacci compression, file compression, browser compression, webassembly compression, wasm compression, privacy-first compression, offline compression, pwa compression, zeckendorf algorithm, zeckendorf representation, big endian compression, little endian compression" />
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<link rel="canonical" href="https://pRizz.github.io/zeckendorf-webapp/" />
<!-- PWA Meta Tags -->
<meta name="mobile-web-app-title" content="Zeckendorf" />
<meta name="theme-color" content="#0d1117" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Zeckendorf" />
<link rel="apple-touch-icon" href="/pwa-192x192.png" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://pRizz.github.io/zeckendorf-webapp/" />
<meta property="og:title" content="Zeckendorf Webapp - Browser-Based File Compression" />
<meta property="og:description" content="Free, open-source web application for compressing and decompressing files using the Zeckendorf representation algorithm. All processing happens locally in your browser—no data is uploaded to any server." />
<meta property="og:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Zeckendorf Webapp - Browser-Based File Compression" />
<meta property="og:site_name" content="Zeckendorf Webapp" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://pRizz.github.io/zeckendorf-webapp/" />
<meta name="twitter:title" content="Zeckendorf Webapp - Browser-Based File Compression" />
<meta name="twitter:description" content="Free, open-source web application for compressing and decompressing files using the Zeckendorf representation algorithm. All processing happens locally in your browser—no data is uploaded to any server." />
<meta name="twitter:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
<meta name="twitter:image:alt" content="Zeckendorf Webapp - Browser-Based File Compression" />
<meta name="twitter:creator" content="@pryszkie" />
<!-- Structured Data (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Zeckendorf Webapp",
"alternateName": "Zeckendorf Compression",
"description": "Free, open-source web application for compressing and decompressing files using the Zeckendorf representation algorithm. All processing happens locally in your browser—no data is uploaded to any server.",
"url": "https://pRizz.github.io/zeckendorf-webapp/",
"applicationCategory": "UtilityApplication",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Browser-based compression",
"No data uploads",
"Works offline",
"WebAssembly powered",
"Progressive Web App"
],
"author": {
"@type": "Person",
"name": "Peter Ryszkiewicz"
},
"license": "https://opensource.org/licenses/MIT",
"softwareVersion": "__APP_VERSION__",
"browserRequirements": "Requires JavaScript and WebAssembly support"
}
</script>
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>