mirror of
https://github.com/docmost/docmost.git
synced 2026-08-29 10:05:03 +08:00
17 lines
359 B
TypeScript
17 lines
359 B
TypeScript
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>
|
|
);
|
|
}
|