Files
authentik/website/src/pages/pricing/index.jsx
Jens L 35d2e9cd5f website: add pricing waitlist and blog post (#5058)
* pricing

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* update

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* website: add pricing waitlist and blog post

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* Apply suggestions from code review

Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com>
Signed-off-by: Jens L. <jens@beryju.org>

* fix lint

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

---------

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens L. <jens@beryju.org>
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com>
2023-03-23 21:34:34 +01:00

138 lines
7.3 KiB
JavaScript

import React from "react";
import Layout from "@theme/Layout";
import Link from "@docusaurus/Link";
import Card from "../../components/PricingQuestions/Card";
export default function pricingPage() {
return (
<Layout title="Pricing">
<section>
<div
className="container"
style={{ marginTop: "2rem", marginBottom: "4rem" }}
>
<h1 style={{ textAlign: "center" }}>Pricing</h1>
<p style={{ textAlign: "center" }}>
All variants include security patches for all supported
versions.
</p>
<div className={"row"}>
<div className={"col col--4 margin-vert--md"}>
<div className="card" style={{ height: "28rem" }}>
<div className="card__header">
<h3>Open Source</h3>
</div>
<div className="card__body">
<li>Open source</li>
<li>Self-hosted</li>
<li>Supports OAuth2/OpenID Connect</li>
<li>Supports SAML</li>
<li>Supports LDAP</li>
<li>Supports Proxy authentication</li>
<li>Advanced policy engine</li>
<li>Community support</li>
</div>
<div className="card__footer">
<h1>Free, forever</h1>
<Link
className="button button--primary button--block"
href={"/docs/"}
>
Get Started
</Link>
</div>
</div>
</div>
<div className={"col col--4 margin-vert--md"}>
<div className="card" style={{ height: "28rem" }}>
<div className="card__header">
<h3>Enterprise Self-Hosted</h3>
</div>
<div className="card__body">
<li>Self-hosted</li>
<li>Source-available</li>
<li>Long-term-support releases</li>
<li>Enterprise support plan (50 Users+)</li>
<li>Push-notification MFA (planned)</li>
<li>Desktop authentication (planned)</li>
<li>AI-based risk assessment (planned)</li>
</div>
<div className="card__footer">
<h1>
$5 <small>/user/month</small>
</h1>
<a
className="button button--info button--block"
href="./waitlist/enterprise"
>
Join waitlist
</a>
</div>
</div>
</div>
<div className={"col col--4 margin-vert--md"}>
<div className="card" style={{ height: "28rem" }}>
<div className="card__header">
<h3>Enterprise Cloud</h3>
</div>
<div className="card__body">
<li>Hosted and Managed by authentik</li>
<li>
Easily shift to self-hosted if needed
</li>
<li>Source-available</li>
<li>Long-term-support releases</li>
<li>Enterprise support plan (50 Users+)</li>
<li>Push-notification MFA (planned)</li>
<li>Desktop authentication (planned)</li>
<li>AI-based risk assessment (planned)</li>
</div>
<div className="card__footer">
<h4>Minimum 100 users</h4>
<h1>
$5 <small>/user/month</small>
</h1>
<a
className="button button--info button--block"
href="./waitlist/cloud"
>
Join waitlist
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div className="container" style={{ marginBottom: "3rem" }}>
<div class="row">
<div className="col col--8 col--offset-2">
<p className="hero__subtitle margin--md">
Frequently Asked Questions
</p>
<div class="card-demo margin--md">
<Card
body="No. As part of our core principal, we will not move any features from the open source version to the enterprise version. Features from the enterprise version are periodically moved to the open source version."
title="Will any feature of the open-source version ever become enterprise?"
/>
<Card
body="We're always curious to hear what our customers are interested in and what they want to see in authentik, so if you have any questions about features send an email to <a href='mailto:hello@goauthentik.io'>hello@goauthentik.io</a>."
title="Are you planning to add X to authentik?"
/>
<Card
body="Anyone that wants to use the enterprise features listed above. There's no minimum user amount required for enterprise."
title="Who should use Enterprise plans?"
/>
</div>
</div>
</div>
</div>
</section>
</Layout>
);
}