mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 06:23:06 +08:00
59e945562d
* Add page_hierarchy table * feat(ee): page-level permissions * pagination * rename migration fixes * fix * tabs * fix theme * cleanup * sync * page permissions notification * other fixes * sharing disbled * fix column nodes * toggle error handling
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import { Group, Table, ThemeIcon } from "@mantine/core";
|
|
import { IconCheck } from "@tabler/icons-react";
|
|
|
|
export default function OssDetails() {
|
|
return (
|
|
<Table.ScrollContainer minWidth={500} py="md">
|
|
<Table
|
|
variant="vertical"
|
|
verticalSpacing="sm"
|
|
layout="fixed"
|
|
withTableBorder
|
|
>
|
|
<Table.Caption>
|
|
To unlock enterprise features like SSO, AI, Page-level permissions, SSO, MFA, Resolve comments, contact sales@docmost.com.
|
|
</Table.Caption>
|
|
<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>
|
|
);
|
|
}
|