2020-11-15 21:42:02 +00:00
|
|
|
import React from "react";
|
|
|
|
import clsx from "clsx";
|
|
|
|
import Layout from "@theme/Layout";
|
|
|
|
import Link from "@docusaurus/Link";
|
2021-04-19 15:25:26 +00:00
|
|
|
import BrowserOnly from "@docusaurus/core/lib/client/exports/BrowserOnly";
|
2020-11-15 21:42:02 +00:00
|
|
|
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
|
|
|
|
import useBaseUrl from "@docusaurus/useBaseUrl";
|
|
|
|
import styles from "./styles.module.css";
|
2021-03-18 21:02:04 +00:00
|
|
|
import Comparison from "../comparison";
|
2021-07-13 10:10:08 +00:00
|
|
|
import 'react-before-after-slider-component/dist/build.css';
|
2020-11-15 21:42:02 +00:00
|
|
|
|
|
|
|
const features = [
|
|
|
|
{
|
|
|
|
title: "Easy to Use",
|
|
|
|
description: (
|
|
|
|
<>
|
2020-12-29 19:17:35 +00:00
|
|
|
Identity made easy. authentik makes single-sign on (SSO), user
|
|
|
|
enrollment, and access control simple.
|
2020-11-15 21:42:02 +00:00
|
|
|
</>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: "Realise your workflow",
|
|
|
|
description: (
|
|
|
|
<>
|
2020-12-29 19:17:35 +00:00
|
|
|
authentik lets you build your workflow as you need it, no
|
2020-11-15 21:42:02 +00:00
|
|
|
limitations.
|
|
|
|
</>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: "Powered by Python",
|
|
|
|
description: (
|
|
|
|
<>
|
|
|
|
Implement custom verification or access control logic using
|
|
|
|
Python code.
|
|
|
|
</>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
function Feature({ imageUrl, title, description }) {
|
|
|
|
const imgUrl = useBaseUrl(imageUrl);
|
|
|
|
return (
|
|
|
|
<div className={clsx("col col--4", styles.feature)}>
|
|
|
|
{imgUrl && (
|
|
|
|
<div className="text--center">
|
|
|
|
<img
|
|
|
|
className={styles.featureImage}
|
|
|
|
src={imgUrl}
|
|
|
|
alt={title}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
<h3>{title}</h3>
|
|
|
|
<p>{description}</p>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function Home() {
|
|
|
|
const context = useDocusaurusContext();
|
|
|
|
const { siteConfig = {} } = context;
|
|
|
|
return (
|
|
|
|
<Layout title="Welcome" description={siteConfig.tagline}>
|
|
|
|
<header className={clsx("hero hero--primary", styles.heroBanner)}>
|
|
|
|
<div className="container">
|
|
|
|
<div className="row">
|
|
|
|
<div className="col padding-top--lg">
|
|
|
|
<h1 className="hero__title">
|
2021-05-05 18:05:07 +00:00
|
|
|
Making authentication simple.
|
2020-11-15 21:42:02 +00:00
|
|
|
</h1>
|
|
|
|
<p className="hero__subtitle">
|
2020-12-05 21:08:42 +00:00
|
|
|
authentik is an open-source Identity Provider
|
2020-11-15 21:42:02 +00:00
|
|
|
focused on flexibility and versatility
|
|
|
|
</p>
|
|
|
|
<div className={styles.buttons}>
|
|
|
|
<Link
|
|
|
|
className={clsx(
|
|
|
|
"button button--outline button--secondary button--lg",
|
|
|
|
styles.getStarted
|
|
|
|
)}
|
2021-12-13 17:57:13 +00:00
|
|
|
to={useBaseUrl("docs/installation/")}
|
2020-11-15 21:42:02 +00:00
|
|
|
>
|
|
|
|
Get Started
|
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="col text--center hero_image">
|
2020-12-05 21:08:42 +00:00
|
|
|
<img alt="authentik logo" src={useBaseUrl("img/icon_top_brand.svg")} />
|
2020-11-15 21:42:02 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<section className={styles.features}>
|
|
|
|
<div className="container">
|
2020-12-05 21:08:42 +00:00
|
|
|
<div className={clsx("row", styles.rowFeatures)}>
|
2020-11-15 21:42:02 +00:00
|
|
|
{features.map((props, idx) => (
|
|
|
|
<Feature key={idx} {...props} />
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
<div className="row">
|
|
|
|
<div className="col col--5">
|
2020-12-05 21:08:42 +00:00
|
|
|
<div>
|
2021-04-19 15:25:26 +00:00
|
|
|
<BrowserOnly>
|
2021-04-19 17:23:21 +00:00
|
|
|
{() => {
|
2021-07-13 10:46:29 +00:00
|
|
|
const ReactBeforeSliderComponent = require('react-before-after-slider-component');
|
2021-07-13 10:10:08 +00:00
|
|
|
return <ReactBeforeSliderComponent
|
|
|
|
firstImage={{
|
|
|
|
id: 1,
|
|
|
|
imageUrl: useBaseUrl("img/screen_apps_light.jpg"),
|
|
|
|
}}
|
|
|
|
secondImage={{
|
|
|
|
id: 2,
|
|
|
|
imageUrl: useBaseUrl("img/screen_apps_dark.jpg"),
|
|
|
|
}}
|
2021-04-19 17:23:21 +00:00
|
|
|
/>
|
|
|
|
}}
|
2021-04-19 15:25:26 +00:00
|
|
|
</BrowserOnly>
|
2020-12-05 21:08:42 +00:00
|
|
|
</div>
|
2020-11-15 21:42:02 +00:00
|
|
|
</div>
|
|
|
|
<div className="col col--5 col--offset-2 padding-vert--xl">
|
2020-12-05 21:08:42 +00:00
|
|
|
<h2>What is authentik?</h2>
|
2020-11-15 21:42:02 +00:00
|
|
|
<p>
|
2020-12-05 21:08:42 +00:00
|
|
|
authentik is an open-source Identity Provider
|
2020-11-15 21:42:02 +00:00
|
|
|
focused on flexibility and versatility. You
|
2020-12-05 21:08:42 +00:00
|
|
|
can use authentik in an existing environment
|
2020-12-29 19:17:35 +00:00
|
|
|
to add support for new protocols, implement
|
|
|
|
sign-up/recovery/etc. in your application so
|
|
|
|
you don't have to deal with it, and many other
|
|
|
|
things.
|
2020-11-15 21:42:02 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-12-05 21:08:42 +00:00
|
|
|
<div className="row">
|
|
|
|
<div className="col col--5 col--offset-2 padding-vert--xl">
|
2020-12-29 19:17:35 +00:00
|
|
|
<h2>Utmost flexibility</h2>
|
2020-12-05 21:08:42 +00:00
|
|
|
<p>
|
|
|
|
You can adopt authentik to your environment,
|
2020-12-29 19:38:38 +00:00
|
|
|
regardless of your requirements. Need an Active-Directory
|
|
|
|
integrated SSO Provider? Do you want
|
2020-12-05 21:08:42 +00:00
|
|
|
to implement a custom enrollment process for your
|
|
|
|
customers? Are you developing an application and
|
|
|
|
don't want to deal with User verification and recovery?
|
|
|
|
authentik can do all of that, and more!
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div className="col col--5">
|
|
|
|
<div>
|
2021-04-19 15:25:26 +00:00
|
|
|
<BrowserOnly>
|
2021-04-19 17:23:21 +00:00
|
|
|
{() => {
|
2021-07-13 10:46:29 +00:00
|
|
|
const ReactBeforeSliderComponent = require('react-before-after-slider-component');
|
2021-07-13 10:10:08 +00:00
|
|
|
return <ReactBeforeSliderComponent
|
|
|
|
firstImage={{
|
|
|
|
id: 1,
|
|
|
|
imageUrl: useBaseUrl("img/screen_admin_light.jpg"),
|
|
|
|
}}
|
|
|
|
secondImage={{
|
|
|
|
id: 2,
|
|
|
|
imageUrl: useBaseUrl("img/screen_admin_dark.jpg"),
|
|
|
|
}}
|
2021-04-19 17:23:21 +00:00
|
|
|
/>
|
|
|
|
}}
|
2021-04-19 15:25:26 +00:00
|
|
|
</BrowserOnly>
|
2020-12-05 21:08:42 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-15 21:42:02 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
2021-03-18 21:02:04 +00:00
|
|
|
<section>
|
|
|
|
<Comparison></Comparison>
|
|
|
|
</section>
|
2020-11-15 21:42:02 +00:00
|
|
|
</main>
|
|
|
|
</Layout>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Home;
|