diff --git a/svelte/src/home_page/FeatureTable.svelte b/svelte/src/home_page/FeatureTable.svelte index fec426e..99c7480 100644 --- a/svelte/src/home_page/FeatureTable.svelte +++ b/svelte/src/home_page/FeatureTable.svelte @@ -83,7 +83,7 @@ onMount(() => { Hotlinking not supported
Hotlinked files get blocked -
+
Hotlinking supported
Hotlinking uses your transfer limit
@@ -91,7 +91,7 @@ onMount(() => {
Storage
-
+
No limit
Files expire when they are not downloaded
@@ -124,7 +124,7 @@ onMount(() => {
20 GB per file
-
+
100 GB per file
@@ -362,4 +362,10 @@ onMount(() => { .span2 { grid-column: span 2; } +.span2.left { + border-image: linear-gradient(to right, #ebcb8b 0%, var(--highlight_color) 100%) 1; +} +.span2.right { + border-image: linear-gradient(to right, var(--highlight_color) 0%, #ec2cfa 100%) 1; +} diff --git a/svelte/src/home_page/HomePage.svelte b/svelte/src/home_page/HomePage.svelte index b9318a8..aee5158 100644 --- a/svelte/src/home_page/HomePage.svelte +++ b/svelte/src/home_page/HomePage.svelte @@ -68,26 +68,27 @@ let upload_widget
-

Our pricing!

- We're not afraid to say it +

Pricing

+ (Prepaid plan. For monthly subscriptions, look further below)
-

Prepaid plan

-
    -
  • - Storage
    - € 4 per TB per month -
  • -
  • - Data egress (downloading and sharing files)
    - € 2 per TB -
  • -
  • - No other charges! -
  • -
-

What you get

+
+
+
Storage pricing
+
€ 4 / TB / month
+
+
+
Egress pricing
+
€ 2 / TB
+
+
+
That's it!
+
No other charges
+
+
+ +

What you get

  • Unlimited storage space @@ -213,4 +214,29 @@ header > span { color: var(--highlight_color); text-shadow: 1px 1px 3px var(--shadow_color); } + +.prices { + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: center; + gap: 10px; +} +.prices > div { + flex: 1 0 200px; + min-width: 200px; + display: flex; + flex-direction: column; + text-align: center; + border-radius: 6px; + overflow: hidden; + border: 2px solid var(--card_color); +} +.prices > div > div { + padding: 4px; +} +.prices > div > div:nth-child(2) { + background: var(--card_color); + font-size: 1.3em; +}