initial setup, ztdl-login, core

This commit is contained in:
Max Peintner
2023-04-03 13:39:51 +02:00
parent c1c9ccbf03
commit f9299ad990
100 changed files with 126387 additions and 81 deletions

View File

@@ -0,0 +1,15 @@
import { ZitadelLogoDark } from './ZitadelLogoDark';
import { ZitadelLogoLight } from './ZitadelLogoLight';
export function ZitadelLogo() {
return (
<>
<div className="hidden dark:flex">
<ZitadelLogoLight />
</div>
<div className="flex dark:hidden">
<ZitadelLogoDark />
</div>
</>
);
}