feat(admin): add self-host setup and user management page (#7537)

This commit is contained in:
JimmFly
2024-08-13 14:11:03 +08:00
committed by GitHub
parent dc519348c5
commit ccf225c8f9
47 changed files with 2793 additions and 551 deletions
@@ -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 };