mirror of
https://github.com/goauthentik/authentik
synced 2026-04-27 09:57:31 +02:00
Revert "website: Fix broken schema links, non-relative paths, unapplied redir…"
This reverts commit 0e56195c82.
118 lines
4.7 KiB
TypeScript
118 lines
4.7 KiB
TypeScript
import styles from "./styles.module.css";
|
|
|
|
import Translate from "@docusaurus/Translate";
|
|
import Admonition from "@theme/Admonition";
|
|
import type { Props } from "@theme/EditMetaRow";
|
|
import EditThisPage from "@theme/EditThisPage";
|
|
import LastUpdated from "@theme/LastUpdated";
|
|
import clsx from "clsx";
|
|
import React from "react";
|
|
|
|
const EditMetaRow: React.FC<Props> = ({
|
|
className,
|
|
editUrl,
|
|
lastUpdatedAt,
|
|
lastUpdatedBy,
|
|
}: Props) => {
|
|
return (
|
|
<>
|
|
<hr className={styles.divider} />
|
|
|
|
<Admonition
|
|
className={clsx(styles.admonitionContrib, className)}
|
|
icon={null}
|
|
title={null}
|
|
type="note"
|
|
>
|
|
<div className={clsx(styles.admonitionHeader)}>
|
|
<strong>
|
|
<Translate
|
|
id="theme.common.contributor.footerHeader"
|
|
description="The header for the contribution footer"
|
|
>
|
|
Help us improve this content
|
|
</Translate>
|
|
</strong>
|
|
</div>
|
|
<p>
|
|
<Translate
|
|
id="theme.common.contributor.footerDescription1"
|
|
description="The description for the contribution footer"
|
|
>
|
|
We welcome your knowledge and expertise. If you see areas of the
|
|
documentation that you can improve (fix a typo, correct a technical detail,
|
|
add additional context, etc.) we would really appreciate your contribution.
|
|
</Translate>
|
|
</p>
|
|
|
|
<div className="row">
|
|
<div className="col col--12">
|
|
<ul>
|
|
{editUrl ? (
|
|
<li>
|
|
<EditThisPage editUrl={editUrl} />
|
|
</li>
|
|
) : null}
|
|
|
|
<li>
|
|
<a
|
|
href="https://docs.goauthentik.io/docs/developer-docs/"
|
|
target="_blank"
|
|
rel="noreferrer noopener"
|
|
>
|
|
<Translate
|
|
id="theme.common.contributor.howToContribute"
|
|
description="The link label to the contribution guide"
|
|
>
|
|
Contributor Guide
|
|
</Translate>
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a
|
|
href="https://github.com/goauthentik/authentik/issues/new"
|
|
target="_blank"
|
|
rel="noreferrer noopener"
|
|
>
|
|
<Translate
|
|
id="theme.common.contributor.createAnIssue"
|
|
description="The link label to report a documentation issue"
|
|
>
|
|
Open an issue
|
|
</Translate>
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a
|
|
href="https://goauthentik.io/pricing/"
|
|
target="_blank"
|
|
rel="noreferrer noopener"
|
|
>
|
|
<Translate
|
|
id="theme.common.contributor.getSupport"
|
|
description="The link label to request support"
|
|
>
|
|
Get Enterprise Support
|
|
</Translate>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</Admonition>
|
|
|
|
<div className="row">
|
|
<div className={clsx("col", styles.lastUpdated)}>
|
|
{lastUpdatedAt || lastUpdatedBy ? (
|
|
<LastUpdated lastUpdatedAt={lastUpdatedAt} lastUpdatedBy={lastUpdatedBy} />
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default EditMetaRow;
|