Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: pro release #425

Merged
merged 1 commit into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions src/lib/components/PreFooter.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</p>
<a
href="https://cloud.appwrite.io/register"
class="aw-button is-full-width-mobile aw-u-cross-child-end"
class="aw-button is-secondary is-full-width-mobile aw-u-cross-child-end"
>
<span class="text">Get started</span>
</a>
Expand All @@ -53,12 +53,14 @@
<p class="aw-strip-plans-info aw-caption-500">
For pro developers and teams that need to scale their products.
</p>
<button
class="aw-button is-full-width-mobile is-secondary aw-u-cross-child-end"
disabled
<a
href="https://cloud.appwrite.io/register?type=createPro"
class="aw-button is-full-width-mobile aw-u-cross-child-end"
target="_blank"
rel="noopener noreferrer"
>
<span class="text">Coming soon</span>
</button>
<span class="text">Start trial</span>
</a>
</div>
</li>
<li class="aw-strip-plans-item aw-strip-plans-container-query">
Expand Down
22 changes: 15 additions & 7 deletions src/routes/pricing/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -125,16 +125,18 @@
For pro developers and teams that need to scale
their products.
</p>
<button
<a
href="https://cloud.appwrite.io/register?type=createPro"
class="aw-button is-full-width u-margin-block-start-32"
disabled
target="_blank"
rel="noopener noreferrer"
>
<span class="aw-sub-body-500">Coming soon</span>
</button>
<span class="aw-sub-body-500">Start trial</span>
</a>
</header>
<div class="aw-pricing-cards-content">
<ul class="aw-checked-list-circle">
<li>
<li>
<span>Unlimited projects (never paused)</span>
</li>
<li><span>300GB bandwidth</span></li>
Expand Down Expand Up @@ -207,7 +209,10 @@
style="background:rgba(35, 35, 37, 0.90);"
>
<header class="u-flex u-gap-12">
<h3 id="enterprises" class="aw-main-body-500 aw-u-color-text-primary">
<h3
id="enterprises"
class="aw-main-body-500 aw-u-color-text-primary"
>
Enterprises
</h3>
<div class="aw-inline-tag is-pink">Coming Soon</div>
Expand All @@ -230,7 +235,10 @@
style="background:rgba(35, 35, 37, 0.90);"
>
<header class="u-flex u-gap-12">
<h3 id="open-source-teams" class="aw-main-body-500 aw-u-color-text-primary">
<h3
id="open-source-teams"
class="aw-main-body-500 aw-u-color-text-primary"
>
Open-source teams
</h3>
</header>
Expand Down
13 changes: 9 additions & 4 deletions src/routes/pricing/compare-plans.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
{
title: 'Dedicated databases',
free: '-',
pro: 'Coming soon',
pro: 'Start trial',
scale: 'Coming soon'
}
]
Expand Down Expand Up @@ -395,9 +395,14 @@
class="u-flex u-cross-center u-gap-16 u-flex-wrap u-main-space-between"
>
<h4 class="aw-label aw-u-color-text-primary">Pro</h4>
<button class="aw-button" disabled>
<span class="aw-sub-body-500">Coming soon</span>
</button>
<a
class="aw-button"
href="https://cloud.appwrite.io/register?type=createPro"
target="_blank"
rel="noopener noreferrer"
>
<span class="aw-sub-body-500">Start trial</span>
</a>
</div>
</div>
<div class="aw-mini-card">
Expand Down