|
2 | 2 | import DiscordLogo from '$lib/components/DiscordLogo.svelte';
|
3 | 3 | import FeatureCard from '$lib/components/FeatureCard.svelte';
|
4 | 4 | import FlexDownloadButtons from '$lib/components/FlexDownloadButtons.svelte';
|
| 5 | + import Fna from '$lib/components/Fna.svelte'; |
5 | 6 | </script>
|
6 | 7 |
|
7 | 8 | <svelte:head>
|
8 | 9 | <title>Flow - FOSS expense tracker</title>
|
9 | 10 | </svelte:head>
|
10 | 11 |
|
| 12 | +<!-- md+ --> |
| 13 | +<div class="babalo left-[25vw] top-[25vh] hidden animate-moveAroundA md:block"></div> |
| 14 | +<div class="babalo right-[20vw] top-[10vh] hidden animate-moveAroundB md:block"></div> |
| 15 | +<div class="babalo right-[15vw] top-[80vh] hidden animate-moveAroundC md:block"></div> |
| 16 | +<!-- mobile --> |
| 17 | +<div class="babalo left-[-1vw] top-[10vh] animate-moveAroundA md:hidden"></div> |
| 18 | +<div class="babalo right-[8vw] top-[80vh] animate-moveAroundC md:hidden"></div> |
| 19 | + |
11 | 20 | <section class="flex flex-col items-center gap-10">
|
12 | 21 | <div class="h-20"></div>
|
13 | 22 |
|
|
31 | 40 |
|
32 | 41 | <div class="grid max-w-5xl grid-cols-1 gap-4 md:grid-cols-2 lg:grid-cols-3">
|
33 | 42 | <FeatureCard title="Free and open-source">
|
| 43 | + {#snippet icon()} |
| 44 | + 🌐 |
| 45 | + {/snippet} |
34 | 46 | Flow is a GPL v3.0 licensed, free, and open-source project.
|
35 | 47 | </FeatureCard>
|
36 | 48 |
|
37 |
| - <FeatureCard title="Offline" |
38 |
| - >Flow can work fully offline <sup><a href="#sup1">[1]</a></sup></FeatureCard |
39 |
| - > |
| 49 | + <FeatureCard title="Privacy-focused"> |
| 50 | + {#snippet icon()} |
| 51 | + 🔐 |
| 52 | + {/snippet} |
| 53 | + You are in control of your data |
| 54 | + <Fna n="1" /> |
| 55 | + </FeatureCard> |
40 | 56 |
|
41 |
| - <FeatureCard title="Privacy-focused" |
42 |
| - >You are in control of your data <sup> |
43 |
| - <a href="#sup2">[2]</a> <a href="#sup3">[3]</a> |
44 |
| - </sup> |
| 57 | + <FeatureCard title="Offline"> |
| 58 | + {#snippet icon()} |
| 59 | + ⚡️ |
| 60 | + {/snippet} |
| 61 | + Flow can work fully offline <Fna n="2" /> |
45 | 62 | </FeatureCard>
|
46 | 63 |
|
47 | 64 | <FeatureCard title="iCloud sync">
|
48 |
| - With Flow 0.14.0, your data is periodically synced to iCloud, so you don't have to worry about |
49 |
| - losing your data. |
| 65 | + {#snippet icon()} |
| 66 | + ☁️ |
| 67 | + {/snippet} |
| 68 | + Your can periodically sync your data to iCloud |
50 | 69 | </FeatureCard>
|
51 | 70 |
|
52 | 71 | <FeatureCard title="Seamless UX">
|
| 72 | + {#snippet icon()} |
| 73 | + 💯 |
| 74 | + {/snippet} |
53 | 75 | Flow tries to be as user-friendly as possible, with a clean and simple UI.
|
54 | 76 | </FeatureCard>
|
| 77 | + |
| 78 | + <FeatureCard title="Multi-currency"> |
| 79 | + {#snippet icon()} |
| 80 | + 💱 |
| 81 | + {/snippet} |
| 82 | + Flow supports multiple currencies, and can convert between them. |
| 83 | + <Fna n="2" /> |
| 84 | + </FeatureCard> |
55 | 85 | </div>
|
56 | 86 |
|
57 | 87 | <div class="h-20"></div>
|
58 | 88 |
|
59 |
| - <div class="text-xs opacity-80"> |
60 |
| - <p id="sup1" class="max-w-prose"> |
61 |
| - <span class="font-mono">[1]</span> - Flow may need internet to fetch exchange rates if you use |
62 |
| - more than one currency. |
63 |
| - </p> |
64 |
| - <p id="sup2" class="max-w-prose"> |
65 |
| - <span class="font-mono">[2]</span> - With your permission, Flow may automatically save your data |
66 |
| - to your iCloud, or any other storage provider Flow adds in the future. |
| 89 | + <div class="text-xs opacity-75"> |
| 90 | + <p id="fna1"> |
| 91 | + <span class="font-mono">[1]</span> - If you use older Android devices, or devices with Windows, |
| 92 | + or Linux-based operating systems, Flow may store your data, and backups in a easily accessible |
| 93 | + place. Make sure your device and system supports containerized storage, or other type of external |
| 94 | + access protection as you are responsible for your financial data. |
67 | 95 | </p>
|
68 |
| - <p id="sup3" class="max-w-prose"> |
69 |
| - <span class="font-mono">[3]</span> - If you use older Android devices, or devices with Windows, |
70 |
| - or Linux-based operating systems, Flow may store your automatic and manual backups in a easily |
71 |
| - accessible place, and you are responsible for protecting your financial data. |
| 96 | + <br /> |
| 97 | + <p id="fna2"> |
| 98 | + <span class="font-mono">[2]</span> - Flow may need internet to fetch exchange rates if you use |
| 99 | + more than one currency. |
72 | 100 | </p>
|
73 | 101 | </div>
|
74 | 102 | </section>
|
0 commit comments