mirror of
https://github.com/docmost/docmost.git
synced 2026-05-20 00:14:10 +08:00
bd68e47e03
* feat: page verification workflow * feat: refactor page-verification * sync * fix type * fix * fix * notification icon * use full word * accept .license file * - update templates - update migration and notification * fix copy * update audit labels * sync * add space name
102 lines
2.7 KiB
TypeScript
102 lines
2.7 KiB
TypeScript
import { Group, List, Stack, Table, Text, ThemeIcon } from "@mantine/core";
|
|
import { IconCheck } from "@tabler/icons-react";
|
|
|
|
const enterpriseFeatures = [
|
|
"AI Integration (Chat, Search & Assistant)",
|
|
"MCP Support",
|
|
"SSO (SAML, OIDC, LDAP)",
|
|
"Multi-factor Authentication (2FA)",
|
|
"Page-level Permissions",
|
|
"Page verification & approval workflow",
|
|
"Audit Logs",
|
|
"Enterprise Controls",
|
|
"API Keys",
|
|
"Advanced Search Engine Support",
|
|
"Full-text Search in Attachments (PDF, DOCX)",
|
|
"Resolve Comments",
|
|
"Confluence Import",
|
|
"DOCX Import",
|
|
];
|
|
|
|
export default function OssDetails() {
|
|
return (
|
|
<Stack gap="lg">
|
|
<Table.ScrollContainer minWidth={500} py="md">
|
|
<Table
|
|
variant="vertical"
|
|
verticalSpacing="sm"
|
|
layout="fixed"
|
|
withTableBorder
|
|
>
|
|
<Table.Tbody>
|
|
<Table.Tr>
|
|
<Table.Th w={160}>Edition</Table.Th>
|
|
<Table.Td>
|
|
<Group wrap="nowrap">
|
|
Open Source
|
|
<div>
|
|
<ThemeIcon
|
|
color="green"
|
|
variant="light"
|
|
size={24}
|
|
radius="xl"
|
|
>
|
|
<IconCheck size={16} />
|
|
</ThemeIcon>
|
|
</div>
|
|
</Group>
|
|
</Table.Td>
|
|
</Table.Tr>
|
|
</Table.Tbody>
|
|
</Table>
|
|
</Table.ScrollContainer>
|
|
|
|
<Stack gap="md">
|
|
<Text fw={500}>Upgrade to the Enterprise Edition to unlock:</Text>
|
|
|
|
<List
|
|
spacing={4}
|
|
size="sm"
|
|
icon={
|
|
<ThemeIcon size={20} color={"gray"} radius="xl">
|
|
<IconCheck size={14} />
|
|
</ThemeIcon>
|
|
}
|
|
>
|
|
{enterpriseFeatures.map((feature) => (
|
|
<List.Item key={feature}>{feature}</List.Item>
|
|
))}
|
|
</List>
|
|
|
|
<Text size="sm" c="dimmed">
|
|
Get an enterprise trial key at{" "}
|
|
<a
|
|
href="https://customers.docmost.com/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
customers.docmost.com
|
|
</a>
|
|
.
|
|
</Text>
|
|
|
|
<Text size="sm" c="dimmed">
|
|
Visit{" "}
|
|
<a
|
|
href="https://docmost.com/pricing"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
docmost.com/pricing
|
|
</a>{" "}
|
|
to purchase an enterprise license.
|
|
</Text>
|
|
<Text size="sm" c="dimmed">
|
|
For inquiries, contact{" "}
|
|
<a href="mailto:sales@docmost.com">sales@docmost.com</a>
|
|
</Text>
|
|
</Stack>
|
|
</Stack>
|
|
);
|
|
}
|