Skip to content

Commit

Permalink
Merge pull request appwrite#1349 from ItzNotABug/fix-enterprise-plan-…
Browse files Browse the repository at this point in the history
…content

Fix Enterprise Content
  • Loading branch information
eldadfux authored Sep 16, 2024
2 parents 4c79fd1 + 4ba6a02 commit a4be78b
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 59 deletions.
24 changes: 12 additions & 12 deletions src/routes/contact-us/enterprise/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,14 @@
class:web-u-max-width-380={!submitted}
>
{#if submitted}
<section class="u-flex-col web-u-gap-20">
<section class="flex flex-col gap-5">
<h1 class="web-display web-u-color-text-primary">
Thank you for your submission
</h1>
<p class="web-description web-u-padding-block-end-32">
Your details for the enterprise plan have been sent
successfully. Our team will back to you as soon as
possible.
successfully. Our team will get back to you as soon
as possible.
</p>
<a
href="/pricing"
Expand All @@ -114,8 +114,8 @@
Enterprise Plan
</h4>
<p class="web-description">
Apply to our Enterprise Plan by filling out this
form. Our team will reach out to you soon.
Interested in a pricing solution that fits your
specific requirements? Let’s talk.
</p>
</section>
{/if}
Expand All @@ -125,7 +125,7 @@
<form
method="post"
on:submit|preventDefault={handleSubmit}
class="flex flex-col gap-4"
class="flex flex-col gap-4 mt-4 lg:mt-0"
>
<div class="flex justify-end">
<ul
Expand Down Expand Up @@ -197,7 +197,7 @@
</div>
</li>
<li
class="web-form-item is-column-span-2 flex-col gap-1"
class="web-form-item md:col-span-2 flex-col gap-1"
>
<label class="u-block" for="companyWebsite"
>Company website</label
Expand All @@ -212,7 +212,7 @@
/>
</li>
<li
class="web-form-item is-column-span-2 flex-col gap-1"
class="web-form-item md:col-span-2 sm:col-span-1 flex-col gap-1"
>
<label class="u-block" for="use-case"
>Please share more information about your use
Expand All @@ -229,16 +229,16 @@
</ul>
</div>
<div
class="ps-6 flex gap-4 justify-between web-u-flex-col-reverse-mobile items-center"
class="flex flex-col gap-4 justify-between items-center sm:flex-col md:flex-col lg:flex-row"
>
<p class="web-caption-400 web-u-max-width-380">
{#if error}
<p class="web-caption-400 self-start lg:self-center web-u-max-width-380">
{#if error}
{error}
{/if}
</p>
<button
type="submit"
class="web-button u-cross-child-center web-u-inline-width-100-percent-mobile-break1"
class="web-button u-cross-child-center web-u-inline-width-100-percent-mobile-break1 cursor-pointer"
>
<span>Submit</span>
</button>
Expand Down
94 changes: 47 additions & 47 deletions src/routes/pricing/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -258,53 +258,53 @@
</ul>
</div>

<ul class="web-grid-1-1-opt-2 mt-20 gap-8">
<li>
<article
class="web-card is-transparent has-border-gradient min-h-full"
style="background:rgba(35, 35, 37, 0.90);"
>
<header class="flex gap-3">
<h3 id="enterprises" class="text-body text-primary font-medium">
Enterprises
</h3>
<div class="web-inline-tag is-pink">Coming Soon</div>
</header>
<p class="mt-2">
Large scale projects seeking greater performance, collaboration
and security.
</p>
<a href="/contact-us" class="web-button is-secondary mt-8">
<span>Contact us</span>
</a>
</article>
</li>
<li>
<article
class="web-card is-transparent has-border-gradient min-h-full"
style="background:rgba(35, 35, 37, 0.90);"
>
<header class="flex gap-3">
<h3
id="open-source-teams"
class="text-body text-primary font-medium"
>
Open-source teams
</h3>
</header>
<p class="mt-2">
We support OSS maintainers with a free Pro Plan. Read our
announcement blog to find out more.
</p>
<a
href="/docs/advanced/platform/oss"
class="web-button is-secondary mt-8"
>
<span>Learn more</span>
</a>
</article>
</li>
</ul>
<!-- <ul class="web-grid-1-1-opt-2 mt-20 gap-8">-->
<!-- <li>-->
<!-- <article-->
<!-- class="web-card is-transparent has-border-gradient min-h-full"-->
<!-- style="background:rgba(35, 35, 37, 0.90);"-->
<!-- >-->
<!-- <header class="flex gap-3">-->
<!-- <h3 id="enterprises" class="text-body text-primary font-medium">-->
<!-- Enterprises-->
<!-- </h3>-->
<!-- <div class="web-inline-tag is-pink">Coming Soon</div>-->
<!-- </header>-->
<!-- <p class="mt-2">-->
<!-- Large scale projects seeking greater performance, collaboration-->
<!-- and security.-->
<!-- </p>-->
<!-- <a href="/contact-us" class="web-button is-secondary mt-8">-->
<!-- <span>Contact us</span>-->
<!-- </a>-->
<!-- </article>-->
<!-- </li>-->
<!-- <li>-->
<!-- <article-->
<!-- class="web-card is-transparent has-border-gradient min-h-full"-->
<!-- style="background:rgba(35, 35, 37, 0.90);"-->
<!-- >-->
<!-- <header class="flex gap-3">-->
<!-- <h3-->
<!-- id="open-source-teams"-->
<!-- class="text-body text-primary font-medium"-->
<!-- >-->
<!-- Open-source teams-->
<!-- </h3>-->
<!-- </header>-->
<!-- <p class="mt-2">-->
<!-- We support OSS maintainers with a free Pro Plan. Read our-->
<!-- announcement blog to find out more.-->
<!-- </p>-->
<!-- <a-->
<!-- href="/docs/advanced/platform/oss"-->
<!-- class="web-button is-secondary mt-8"-->
<!-- >-->
<!-- <span>Learn more</span>-->
<!-- </a>-->
<!-- </article>-->
<!-- </li>-->
<!-- </ul>-->
</section>
</div>
</div>
Expand Down

0 comments on commit a4be78b

Please sign in to comment.