-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrustfava.html
More file actions
710 lines (693 loc) · 41.1 KB
/
rustfava.html
File metadata and controls
710 lines (693 loc) · 41.1 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
<!doctype html>
<html lang="en" style="background-color: #000">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self' 'wasm-unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; connect-src 'self' https://api.github.com https://raw.githubusercontent.com; font-src 'self'"
/>
<title>rustfava - Desktop App for rustledger</title>
<meta
name="description"
content="Desktop application for viewing and managing your rustledger/Beancount files. Built with Tauri, available for Linux, macOS, and Windows."
/>
<!-- Open Graph / Social Media -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://rustledger.github.io/rustfava" />
<meta property="og:title" content="rustfava - Desktop App for rustledger" />
<meta
property="og:description"
content="Desktop application for viewing and managing your rustledger/Beancount files. Built with Tauri."
/>
<meta property="og:image" content="https://rustledger.github.io/og-image.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="rustfava - Desktop App for rustledger" />
<meta
name="twitter:description"
content="Desktop application for viewing and managing your rustledger/Beancount files."
/>
<!-- Preconnect to external resources -->
<link rel="preconnect" href="https://api.github.com" />
<link rel="dns-prefetch" href="https://api.github.com" />
<!-- Canonical URL -->
<link rel="canonical" href="https://rustledger.github.io/rustfava" />
<!-- Favicon -->
<link
rel="icon"
type="image/svg+xml"
href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect width='100' height='100' rx='20' fill='%230a0a0a'/%3E%3Ctext x='50' y='68' font-size='50' font-family='system-ui' font-weight='bold' text-anchor='middle'%3E%3Ctspan fill='%23f97316'%3Er%3C/tspan%3E%3Ctspan fill='white'%3Ef%3C/tspan%3E%3C/text%3E%3C/svg%3E"
/>
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "rustfava",
"applicationCategory": "FinanceApplication",
"operatingSystem": "Windows, macOS, Linux",
"description": "Desktop application for viewing and managing rustledger/Beancount files. Built with Tauri.",
"url": "https://rustledger.github.io/rustfava",
"downloadUrl": "https://github.com/rustledger/rustfava/releases",
"softwareVersion": "latest",
"author": {
"@type": "Organization",
"name": "rustledger",
"url": "https://github.com/rustledger"
},
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
}
}
</script>
</head>
<body class="bg-black text-white antialiased">
<!-- Skip to main content for accessibility -->
<a
href="#features"
class="sr-only focus:not-sr-only focus:absolute focus:top-4 focus:left-4 focus:z-[100] focus:bg-white focus:text-black focus:px-4 focus:py-2 focus:rounded"
>
Skip to content
</a>
<!-- Nav -->
<nav class="fixed top-0 w-full bg-black/90 backdrop-blur-sm border-b border-white/10 z-50">
<!-- Primary nav -->
<div
class="max-w-5xl mx-auto px-4 sm:px-6 py-3 sm:py-4 flex justify-between items-center"
>
<a
href="/rustfava"
class="flex items-center gap-2 text-base sm:text-lg font-semibold tracking-tight shrink-0"
>
<img
src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect width='100' height='100' rx='20' fill='%230a0a0a'/%3E%3Ctext x='50' y='68' font-size='50' font-family='system-ui' font-weight='bold' text-anchor='middle'%3E%3Ctspan fill='%23f97316'%3Er%3C/tspan%3E%3Ctspan fill='white'%3Ef%3C/tspan%3E%3C/text%3E%3C/svg%3E"
alt="rf"
class="w-6 h-6 rounded"
/>
<span><span class="text-accent">rust</span>fava</span>
</a>
<div class="flex items-center gap-4 sm:gap-8 text-xs sm:text-sm">
<a href="/" class="font-bold text-white hover:text-white/60 transition"
><span class="text-accent">rust</span>ledger</a
>
<a href="/rustfava" class="font-bold" aria-current="page"
><span class="text-accent">rust</span>fava</a
>
<a
href="https://rustledger.github.io/pta-standards/"
class="font-bold text-white hover:text-white/60 transition"
><span class="text-accent">PTA</span> Standards</a
>
</div>
</div>
<!-- Secondary nav - contextual links for rustfava -->
<div>
<div
class="max-w-5xl mx-auto px-4 sm:px-6 py-1 flex justify-end items-center gap-4 sm:gap-6 text-xs text-white/40"
>
<a
href="/rustfava/docs/"
class="hover:text-white/70 transition flex items-center gap-1"
>
<svg class="w-3.5 h-3.5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z"
/>
</svg>
Docs</a
>
<a
href="https://github.com/rustledger/rustfava"
class="hover:text-white/70 transition flex items-center gap-1"
target="_blank"
rel="noopener noreferrer"
>
<svg class="w-3.5 h-3.5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"
/>
</svg>
GitHub</a
>
</div>
</div>
</nav>
<!-- Hero -->
<section class="min-h-[85vh] flex items-center justify-center px-6 pt-20">
<div class="max-w-3xl mx-auto text-center">
<p class="text-white/50 text-sm uppercase tracking-widest mb-6 reveal-fade">
Desktop App for rustledger
</p>
<h1 class="text-5xl md:text-7xl font-bold tracking-tight mb-6 reveal-fade">
<span class="text-accent">rust</span>fava
</h1>
<p class="text-xl md:text-2xl text-white/60 mb-10 max-w-xl mx-auto reveal-fade">
Accounting in plain text, under your control, forever.
</p>
<!-- GitHub Star Button -->
<div class="flex justify-center mb-10 reveal-fade">
<a
href="https://github.com/rustledger/rustfava"
target="_blank"
rel="noopener noreferrer"
class="inline-flex items-center gap-2 bg-white/10 hover:bg-white/15 border border-white/20 px-5 py-3 rounded-lg transition"
>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
fill-rule="evenodd"
d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z"
clip-rule="evenodd"
/>
</svg>
<span>Star on GitHub</span>
<span
id="rustfava-github-stars"
class="bg-white/20 px-2 py-0.5 rounded text-sm"
>-</span
>
</a>
</div>
<!-- Download Options -->
<div id="install-section" class="install-section mb-12 reveal-fade">
<div class="install-tabs" role="tablist">
<button
class="install-tab"
data-tab="docker"
role="tab"
aria-selected="false"
aria-controls="panel-docker"
>
<svg class="tab-icon" viewBox="0 0 24 24" fill="currentColor">
<path
d="M13.983 11.078h2.119a.186.186 0 0 0 .186-.185V9.006a.186.186 0 0 0-.186-.186h-2.119a.185.185 0 0 0-.185.185v1.888c0 .102.083.185.185.185m-2.954-5.43h2.118a.186.186 0 0 0 .186-.186V3.574a.186.186 0 0 0-.186-.185h-2.118a.185.185 0 0 0-.185.185v1.888c0 .102.082.185.185.186m0 2.716h2.118a.187.187 0 0 0 .186-.186V6.29a.186.186 0 0 0-.186-.185h-2.118a.185.185 0 0 0-.185.185v1.887c0 .102.082.185.185.186m-2.93 0h2.12a.186.186 0 0 0 .184-.186V6.29a.185.185 0 0 0-.185-.185H8.1a.185.185 0 0 0-.185.185v1.888c0 .102.083.185.185.185m-2.964 0h2.119a.186.186 0 0 0 .185-.186V6.29a.185.185 0 0 0-.185-.185H5.136a.186.186 0 0 0-.186.185v1.887c0 .102.084.185.186.186m5.893 2.715h2.118a.186.186 0 0 0 .186-.185V9.006a.186.186 0 0 0-.186-.186h-2.118a.185.185 0 0 0-.185.185v1.888c0 .102.082.185.185.185m-2.93 0h2.12a.185.185 0 0 0 .184-.185V9.006a.185.185 0 0 0-.184-.186h-2.12a.185.185 0 0 0-.184.185v1.888c0 .102.083.185.185.185m-2.964 0h2.119a.185.185 0 0 0 .185-.185V9.006a.185.185 0 0 0-.185-.186h-2.12a.186.186 0 0 0-.185.186v1.887c0 .102.084.185.186.185m-2.92 0h2.12a.185.185 0 0 0 .184-.185V9.006a.185.185 0 0 0-.184-.186h-2.12a.185.185 0 0 0-.184.185v1.888c0 .102.082.185.185.185M23.763 9.89c-.065-.051-.672-.51-1.954-.51-.338.001-.676.03-1.01.087-.248-1.7-1.653-2.53-1.716-2.566l-.344-.199-.226.327c-.284.438-.49.922-.612 1.43-.23.97-.09 1.882.403 2.661-.595.332-1.55.413-1.744.42H.751a.751.751 0 0 0-.75.748 11.376 11.376 0 0 0 .692 4.062c.545 1.428 1.355 2.48 2.41 3.124 1.18.723 3.1 1.137 5.275 1.137.983.003 1.963-.086 2.93-.266a12.248 12.248 0 0 0 3.823-1.389c.98-.567 1.86-1.288 2.61-2.136 1.252-1.418 1.998-2.997 2.553-4.4h.221c1.372 0 2.215-.549 2.68-1.009.309-.293.55-.65.707-1.046l.098-.288Z"
/>
</svg>
<span>Docker</span>
</button>
<button
class="install-tab"
data-tab="flake"
role="tab"
aria-selected="false"
aria-controls="panel-flake"
>
<svg class="tab-icon" viewBox="0 0 24 24" fill="currentColor">
<path
d="M7.352 1.592l-1.364.002L5.32 2.75l1.557 2.713-3.137-.008-1.32 2.34H14.11l-1.353-2.332-3.192-.006-2.214-3.865zm6.175 0l-2.687.025 5.846 10.127 1.341-2.34-1.59-2.765 2.24-3.85-.683-1.182h-1.336l-1.57 2.705-1.56-2.72zm6.887 4.195l-5.846 10.125 2.696-.008 1.601-2.76 4.453.016.682-1.183-.666-1.157-3.13-.008L21.778 8.1l-1.365-2.313zM9.432 8.086l-2.696.008-1.601 2.76-4.453-.016L0 12.02l.666 1.157 3.13.008-1.575 2.71 1.365 2.315L9.432 8.086zM7.33 12.25l-.006.01-.002-.004-1.342 2.34 1.59 2.765-2.24 3.85.684 1.182H7.35l.004-.006h.001l1.567-2.698 1.558 2.72 2.688-.026-.004-.006h.01L7.33 12.25zm2.55 3.93l1.354 2.332 3.192.006 2.215 3.865 1.363-.002.668-1.156-1.557-2.713 3.137.008 1.32-2.34H9.881z"
/>
</svg>
<span>Nix Flake</span>
</button>
<button
class="install-tab active"
data-tab="binary"
role="tab"
aria-selected="true"
aria-controls="panel-binary"
>
<svg class="tab-icon" viewBox="0 0 24 24" fill="currentColor">
<path d="M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z" />
</svg>
<span>Desktop App</span>
</button>
</div>
<div class="install-content">
<!-- Docker Panel -->
<div
class="install-panel"
id="panel-docker"
role="tabpanel"
aria-labelledby="tab-docker"
>
<div class="install-command">
<span class="prompt">$</span>
<span class="cmd"
><span class="keyword">docker</span>
<span class="flag">run</span>
<span class="flag">-p</span>
<span class="string">5000:5000</span>
<span class="flag">-v</span>
<span class="string">$PWD:/data</span>
<span class="package">ghcr.io/rustledger/rustfava</span>
<span class="string">/data/file.beancount</span></span
>
<button
class="install-copy-btn"
data-command="docker run -p 5000:5000 -v $PWD:/data ghcr.io/rustledger/rustfava /data/file.beancount"
title="Copy"
aria-label="Copy command"
>
<svg
class="w-5 h-5"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"
/>
</svg>
</button>
</div>
<p class="install-note">
Run Fava with rustledger backend. Open
<a
href="http://localhost:5000"
target="_blank"
rel="noopener noreferrer"
>localhost:5000</a
>
in your browser.
</p>
</div>
<!-- Flake Panel -->
<div
class="install-panel"
id="panel-flake"
role="tabpanel"
aria-labelledby="tab-flake"
>
<p class="install-label">CLI (installs from PyPI)</p>
<div class="install-command">
<span class="prompt">$</span>
<span class="cmd"
><span class="keyword">nix</span>
<span class="flag">run</span>
<span class="package">github:rustledger/rustfava</span>
<span class="flag">--</span>
<span class="string">file.beancount</span></span
>
<button
class="install-copy-btn"
data-command="nix run github:rustledger/rustfava -- file.beancount"
title="Copy"
aria-label="Copy command"
>
<svg
class="w-5 h-5"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"
/>
</svg>
</button>
</div>
<p class="install-label">Desktop app (Linux/macOS)</p>
<div class="install-command">
<span class="prompt">$</span>
<span class="cmd"
><span class="keyword">nix</span>
<span class="flag">run</span>
<span class="package"
>github:rustledger/rustfava#desktop</span
></span
>
<button
class="install-copy-btn"
data-command="nix run github:rustledger/rustfava#desktop"
title="Copy"
aria-label="Copy command"
>
<svg
class="w-5 h-5"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"
/>
</svg>
</button>
</div>
<p class="install-note">
Requires Nix with flakes enabled. Run directly without installation.
</p>
</div>
<!-- Binary Panel -->
<div
class="install-panel active"
id="panel-binary"
role="tabpanel"
aria-labelledby="tab-binary"
>
<div class="binary-options">
<a
href="https://github.com/rustledger/rustfava/releases/latest"
target="_blank"
rel="noopener noreferrer"
class="binary-option"
data-rustfava-asset-pattern=".AppImage"
>
<svg
class="platform-icon"
viewBox="0 0 24 24"
fill="currentColor"
>
<path
d="M12.504 0c-.155 0-.315.008-.48.021-4.226.333-3.105 4.807-3.17 6.298-.076 1.092-.3 1.953-1.05 3.02-.885 1.051-2.127 2.75-2.716 4.521-.278.832-.41 1.684-.287 2.489a.424.424 0 00-.11.135c-.26.268-.45.6-.663.839-.199.199-.485.267-.797.4-.313.136-.658.269-.864.68-.09.189-.136.394-.132.602 0 .199.027.4.055.536.058.399.116.728.04.97-.249.68-.28 1.145-.106 1.484.174.334.535.47.94.601.81.2 1.91.135 2.774.6.926.466 1.866.67 2.616.47.526-.116.97-.464 1.208-.946.587-.003 1.23-.269 2.26-.334.699-.058 1.574.267 2.577.2.025.134.063.198.114.333l.003.003c.391.778 1.113 1.132 1.884 1.071.771-.06 1.592-.536 2.257-1.306.631-.765 1.683-1.084 2.378-1.503.348-.199.629-.469.649-.853.023-.4-.2-.811-.714-1.376v-.097l-.003-.003c-.17-.2-.25-.535-.338-.926-.085-.401-.182-.786-.492-1.046h-.003c-.059-.054-.123-.067-.188-.135a.357.357 0 00-.19-.064c.431-1.278.264-2.55-.173-3.694-.533-1.41-1.465-2.638-2.175-3.483-.796-1.005-1.576-1.957-1.56-3.368.026-2.152.236-6.133-3.544-6.139z"
/>
</svg>
<div class="platform-name">Linux</div>
<div class="platform-arch">.AppImage</div>
</a>
<a
href="https://github.com/rustledger/rustfava/releases/latest"
target="_blank"
rel="noopener noreferrer"
class="binary-option"
data-rustfava-asset-pattern=".dmg"
>
<svg
class="platform-icon"
viewBox="0 0 24 24"
fill="currentColor"
>
<path
d="M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.559-1.701"
/>
</svg>
<div class="platform-name">macOS</div>
<div class="platform-arch">.dmg</div>
</a>
<a
href="https://github.com/rustledger/rustfava/releases/latest"
target="_blank"
rel="noopener noreferrer"
class="binary-option"
data-rustfava-asset-pattern=".msi"
>
<svg
class="platform-icon"
viewBox="0 0 24 24"
fill="currentColor"
>
<path
d="M0 3.449L9.75 2.1v9.451H0m10.949-9.602L24 0v11.4H10.949M0 12.6h9.75v9.451L0 20.699M10.949 12.6H24V24l-12.9-1.801"
/>
</svg>
<div class="platform-name">Windows</div>
<div class="platform-arch">.msi</div>
</a>
</div>
<p class="install-note">
<svg
class="note-icon"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
See all downloads on
<a
href="https://github.com/rustledger/rustfava/releases"
target="_blank"
rel="noopener noreferrer"
>GitHub Releases</a
>.
</p>
</div>
</div>
</div>
<!-- Screenshot Preview -->
<div class="reveal-fade mt-8 mb-16">
<button
type="button"
class="rounded-xl overflow-hidden border border-white/10 cursor-zoom-in hover:border-white/30 transition shadow-2xl shadow-black/50 max-w-4xl mx-auto"
data-lightbox="/screenshots/rustfava-dashboard.png"
aria-label="View larger: rustfava dashboard"
>
<img
src="/screenshots/rustfava-dashboard.png"
alt="rustfava dashboard showing Fava charts and financial data"
class="w-full"
/>
</button>
</div>
</div>
</section>
<!-- Features -->
<section id="features" class="py-24 px-6 border-t border-white/10">
<div class="max-w-5xl mx-auto">
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-center reveal-fade">
Everything you need
</h2>
<p class="text-white/50 text-center mb-16 max-w-2xl mx-auto reveal-fade">
A beautiful desktop app for managing your finances with the power of plain text
accounting.
</p>
<div class="grid sm:grid-cols-2 lg:grid-cols-3 gap-8">
<div
class="bg-white/5 border border-white/10 rounded-xl p-6 hover:border-white/20 transition reveal-fade"
>
<div
class="w-10 h-10 bg-accent/20 rounded-lg flex items-center justify-center mb-4"
>
<svg
class="w-5 h-5 text-accent"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M13 10V3L4 14h7v7l9-11h-7z"
/>
</svg>
</div>
<div class="font-semibold mb-2">Native Performance</div>
<div class="text-sm text-white/50">
Built with Tauri for small bundle size and instant startup. No Electron
bloat.
</div>
</div>
<div
class="bg-white/5 border border-white/10 rounded-xl p-6 hover:border-white/20 transition reveal-fade"
>
<div
class="w-10 h-10 bg-accent/20 rounded-lg flex items-center justify-center mb-4"
>
<svg
class="w-5 h-5 text-accent"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
/>
</svg>
</div>
<div class="font-semibold mb-2">Fava Interface</div>
<div class="text-sm text-white/50">
The familiar Fava web UI you know and love, now as a native desktop app.
</div>
</div>
<div
class="bg-white/5 border border-white/10 rounded-xl p-6 hover:border-white/20 transition reveal-fade"
>
<div
class="w-10 h-10 bg-accent/20 rounded-lg flex items-center justify-center mb-4"
>
<svg
class="w-5 h-5 text-accent"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6"
/>
</svg>
</div>
<div class="font-semibold mb-2">rustledger Backend</div>
<div class="text-sm text-white/50">
Powered by rustledger for blazing fast parsing and validation of your
ledger files.
</div>
</div>
<div
class="bg-white/5 border border-white/10 rounded-xl p-6 hover:border-white/20 transition reveal-fade"
>
<div
class="w-10 h-10 bg-accent/20 rounded-lg flex items-center justify-center mb-4"
>
<svg
class="w-5 h-5 text-accent"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"
/>
</svg>
</div>
<div class="font-semibold mb-2">Cross-Platform</div>
<div class="text-sm text-white/50">
Available for Linux, macOS, and Windows. One app, everywhere.
</div>
</div>
<div
class="bg-white/5 border border-white/10 rounded-xl p-6 hover:border-white/20 transition reveal-fade"
>
<div
class="w-10 h-10 bg-accent/20 rounded-lg flex items-center justify-center mb-4"
>
<svg
class="w-5 h-5 text-accent"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M18.364 5.636a9 9 0 010 12.728m0 0l-2.829-2.829m2.829 2.829L21 21M15.536 8.464a5 5 0 010 7.072m0 0l-2.829-2.829m-4.243 2.829a4.978 4.978 0 01-1.414-2.83m-1.414 5.658a9 9 0 01-2.167-9.238m7.824 2.167a1 1 0 111.414 1.414m-1.414-1.414L3 3m8.293 8.293l1.414 1.414"
/>
</svg>
</div>
<div class="font-semibold mb-2">Offline First</div>
<div class="text-sm text-white/50">
Works without internet. Your financial data stays on your machine,
always.
</div>
</div>
<div
class="bg-white/5 border border-white/10 rounded-xl p-6 hover:border-white/20 transition reveal-fade"
>
<div
class="w-10 h-10 bg-accent/20 rounded-lg flex items-center justify-center mb-4"
>
<svg
class="w-5 h-5 text-accent"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"
/>
</svg>
</div>
<div class="font-semibold mb-2">Multiple Files</div>
<div class="text-sm text-white/50">
Open multiple ledger files in tabs. Switch between projects
effortlessly.
</div>
</div>
</div>
</div>
</section>
<!-- Screenshots -->
<section id="screenshots" class="py-24 px-6 border-t border-white/10">
<div class="max-w-5xl mx-auto">
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-center reveal-fade">
Screenshots
</h2>
<p class="text-white/50 text-center mb-12 reveal-fade">See rustfava in action</p>
<div class="grid md:grid-cols-2 gap-6">
<button
type="button"
class="rounded-xl overflow-hidden border border-white/10 cursor-zoom-in hover:border-white/30 transition reveal-fade"
data-lightbox="/screenshots/rustfava-launcher.png"
aria-label="View larger: rustfava launcher"
>
<img
src="/screenshots/rustfava-launcher.png"
alt="rustfava launcher showing file picker and recent files"
class="w-full"
loading="lazy"
/>
</button>
<button
type="button"
class="rounded-xl overflow-hidden border border-white/10 cursor-zoom-in hover:border-white/30 transition reveal-fade"
data-lightbox="/screenshots/rustfava-dashboard.png"
aria-label="View larger: rustfava dashboard"
>
<img
src="/screenshots/rustfava-dashboard.png"
alt="rustfava dashboard showing Fava charts and financial data"
class="w-full"
loading="lazy"
/>
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 px-6 border-t border-white/10">
<div
class="max-w-5xl mx-auto flex flex-col sm:flex-row justify-between items-center gap-4 text-sm text-white/40"
>
<div>
<span class="text-accent">rust</span>fava
<span id="rustfava-footer-version">...</span>
</div>
<div class="flex gap-6">
<a href="/" class="hover:text-white transition"
><span class="text-accent">rust</span>ledger</a
>
<a
href="https://github.com/rustledger/rustfava"
class="hover:text-white transition"
target="_blank"
rel="noopener noreferrer"
>GitHub</a
>
<a href="/accessibility.html" class="hover:text-white transition"
>Accessibility</a
>
</div>
</div>
</footer>
<!-- Lightbox Modal -->
<div
id="lightbox"
class="fixed inset-0 z-[100] hidden items-center justify-center bg-black/90 backdrop-blur-sm cursor-zoom-out"
role="dialog"
aria-modal="true"
aria-label="Image preview"
>
<img id="lightbox-img" src="" alt="" class="max-w-[90vw] max-h-[90vh] rounded-lg" />
</div>
<!-- Entry point -->
<script type="module" src="/src/rustfava.js"></script>
</body>
</html>