hide shared page branding in EE (#1193)

* hide shared page branding in EE

* Hide branding in business plan
This commit is contained in:
Philip Okugbe
2025-05-17 19:17:34 +01:00
committed by GitHub
parent 4a0b4040ed
commit 7491224d0f
6 changed files with 39 additions and 14 deletions
@@ -0,0 +1,16 @@
import { Affix, Button } from "@mantine/core";
export default function ShareBranding() {
return (
<Affix position={{ bottom: 20, right: 20 }}>
<Button
variant="default"
component="a"
target="_blank"
href="https://docmost.com?ref=public-share"
>
Powered by Docmost
</Button>
</Affix>
);
}