From a99eccc25d17521cba0bfdf904a0c13bfb9d1e9d Mon Sep 17 00:00:00 2001 From: JovannMC Date: Tue, 31 Dec 2024 14:13:05 +0300 Subject: [PATCH] Implement about page --- src/app.scss | 1 + src/routes/about/+page.svelte | 382 ++++++++++++++++++++++++++++++++++ 2 files changed, 383 insertions(+) diff --git a/src/app.scss b/src/app.scss index 60511bd..432a31d 100644 --- a/src/app.scss +++ b/src/app.scss @@ -96,6 +96,7 @@ --bg-panel-accented: color-mix(in srgb, var(--accent) 12%, transparent); --bg-panel-alt: hsl(220, 6%, 25%); --bg-separator: hsl(220, 4%, 28%); + --bg-button: #43464C; --bg-badge: hsl(0, 0%, 100%); --shadow-panel: 0 4px 6px 0 hsla(0, 0%, 0%, 0.15); diff --git a/src/routes/about/+page.svelte b/src/routes/about/+page.svelte index e69de29..8209efc 100644 --- a/src/routes/about/+page.svelte +++ b/src/routes/about/+page.svelte @@ -0,0 +1,382 @@ + + +{#snippet donor(name: string, amount: number | string, avatar: string)} +
+ {name} +

${amount}

+
+{/snippet} + +{#snippet contributor(name: string, role: string, avatar: string)} +
+ {name} +
+

{name}

+

{role}

+
+
+{/snippet} + +
+

+ + About +

+ +
+ +
+ + +

+ + Why VERT? +

+

+ File converters have always disappointed us. They're + ugly, riddled with ads, and most importantly; slow. We + decided to solve this problem once and for all by making an + alternative that solves all those problems, and then some.
+
+ All your files are converted completely on—device, which means + that there's no delay between sending and receiving the file + from a server, and that we never get to snoop on the files you + convert. +

+
+ + + +

+ + Credits +

+ + +
+
+ {#each mainContribs as contrib} + {@const { name, role, avatar } = contrib} + {@render contributor(name, role, avatar)} + {/each} +
+
+ + +
+
+

GitHub Contributors

+

+ Big thanks to all these people for helping out! + + Want to help too? + +

+
+
+ {#each ghContribs as contrib} + {@const { name, avatar } = contrib} + {name} + {/each} +
+
+
+
+ + +
+ + +

+ + Resources +

+ +
+ + + +
+

+ + Donate to VERT +

+

+ With your support, we can keep maintaining and improving + VERT. +

+
+ +
+
+ + + +
+
+ + + +
+ $ + +
+
+
+ +
+

+ Payments and subscription management
are handled through + Liberapay +

+ + +
+ + +
+
+

Our top donors

+

+ People like these fuel the things we love to do. + Thank you so much! +

+
+ +
+ {#each donors as dono} + {@const { name, amount, avatar } = dono} + {@render donor(name, amount, avatar)} + {/each} +
+
+
+
+
+
+ +