import React, { type ReactNode } from "react"; import clsx from "clsx"; import EditThisPage from "@theme/EditThisPage"; import type { Props } from "@theme/EditMetaRow"; import LastUpdated from "@theme/LastUpdated"; import Admonition from "@theme/Admonition"; import styles from "./styles.module.css"; import Translate from "@docusaurus/Translate"; import IconNote from "@theme/Admonition/Icon/Note"; const EditMetaRow: React.FC = ({ className, editUrl, lastUpdatedAt, lastUpdatedBy, }: Props) => { return ( <>
} title={ Help us improve this content } type="info" >

Documentation for authentik is made possible by contributors like you!

You can help us improve this page, or let us know about an issue by opening a pull request on GitHub.

{(lastUpdatedAt || lastUpdatedBy) && ( )}
); }; export default EditMetaRow;