-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (70 loc) · 4.19 KB
/
index.html
File metadata and controls
76 lines (70 loc) · 4.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Printer Tools — Free Privacy-First Web Tools</title>
<meta name="description" content="Free web tools that run in your browser. File converter, Discogs viewer, freelancer calculator. No uploads, no tracking.">
<style>
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;background:#0a0a0a;color:#e5e5e5;min-height:100vh}
.container{max-width:800px;margin:0 auto;padding:48px 16px}
h1{font-size:36px;font-weight:800;text-align:center;margin-bottom:8px}
h1 span{background:linear-gradient(135deg,#6366f1,#a855f7);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.sub{text-align:center;color:#888;margin-bottom:48px;font-size:15px}
.tool{background:#1a1a1a;border:1px solid #333;border-radius:16px;padding:28px;margin-bottom:20px;text-decoration:none;color:inherit;display:block;transition:transform .15s,border-color .2s}
.tool:hover{transform:translateY(-3px);border-color:#6366f1}
.tool h2{font-size:20px;margin-bottom:6px}
.tool .emoji{font-size:28px;margin-bottom:8px}
.tool p{color:#888;font-size:14px;line-height:1.5}
.tool .tag{display:inline-block;background:#222;color:#aaa;padding:3px 10px;border-radius:99px;font-size:11px;margin-top:10px;margin-right:4px}
.tool .live{background:#16a34a22;color:#22c55e}
footer{text-align:center;color:#555;font-size:12px;margin-top:48px}
footer a{color:#6366f1}
</style>
</head>
<body>
<div class="container">
<h1>🛠️ <span>Printer Tools</span></h1>
<p class="sub">Free web tools that respect your privacy. Everything runs in your browser.</p>
<a class="tool" href="https://purpledoubled.github.io/invoice-generator/" target="_blank">
<div class="emoji">🧾</div>
<h2>Invoice Generator</h2>
<p>Create professional invoices in your browser. No signup, no uploads, no subscription. PDF export with tax calculation, GoBD-compliant for German freelancers. Your data stays on your device.</p>
<span class="tag live">● Live</span>
<span class="tag">PDF</span><span class="tag">Freelancer</span><span class="tag">Privacy</span><span class="tag">GoBD</span>
</a>
<a class="tool" href="https://purpledoubled.github.io/file-converter/" target="_blank">
<div class="emoji">🔒</div>
<h2>Private File Converter</h2>
<p>Convert PDF, HEIC, WebP, SVG files without uploading anything. Your files never leave your device. Built after the FBI warned about malicious online converters.</p>
<span class="tag live">● Live</span>
<span class="tag">PDF</span><span class="tag">HEIC</span><span class="tag">WebP</span><span class="tag">SVG</span>
</a>
<a class="tool" href="https://purpledoubled.github.io/discogs-viewer/" target="_blank">
<div class="emoji">🎵</div>
<h2>Discogs Collection Viewer</h2>
<p>Browse your vinyl & CD collection with sorting that actually works. The official app is broken — this isn't. No login required.</p>
<span class="tag live">● Live</span>
<span class="tag">Vinyl</span><span class="tag">Discogs API</span><span class="tag">Sort & Filter</span>
</a>
<a class="tool" href="https://purpledoubled.github.io/stundensatz-rechner/" target="_blank">
<div class="emoji">💰</div>
<h2>Stundensatz-Rechner</h2>
<p>Berechne deinen optimalen Stundensatz als Freelancer in Deutschland. Steuern, Versicherungen, Urlaub — alles einberechnet.</p>
<span class="tag live">● Live</span>
<span class="tag">Freelancer</span><span class="tag">Deutschland</span><span class="tag">Kalkulator</span>
</a>
<a class="tool" href="https://purpledoubled.github.io/qr-code-generator/" target="_blank">
<div class="emoji">📱</div>
<h2>QR Code Generator</h2>
<p>Generate QR codes for URLs, text, WiFi, contacts & more. 100% client-side — your data never leaves your browser.</p>
<span class="tag live">● Live</span>
<span class="tag">Privacy</span><span class="tag">QR Code</span><span class="tag">Free Tool</span>
</a>
<footer>
<p>All tools are open source on <a href="https://github.com/PurpleDoubleD" target="_blank">GitHub</a></p>
</footer>
</div>
</body>
</html>