mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 03:56:23 +08:00
feat(admin): add self-host setup and user management page (#7537)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import { Form } from './form';
|
||||
import logo from './logo.svg';
|
||||
|
||||
export function Setup() {
|
||||
return (
|
||||
<div className="w-full lg:grid lg:grid-cols-2 h-screen">
|
||||
<div className="flex items-center justify-center py-12 h-full">
|
||||
<Form />
|
||||
</div>
|
||||
<div className="hidden lg:block relative overflow-hidden ">
|
||||
<img
|
||||
src={logo}
|
||||
alt="Image"
|
||||
className="absolute object-right-bottom bottom-0 right-0 h-3/4"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export { Setup as Component };
|
||||
Reference in New Issue
Block a user