Files
zitadel/apps/login/app/(login)/layout.tsx

20 lines
464 B
TypeScript
Raw Normal View History

2023-04-14 17:22:59 +02:00
import { ZitadelLogo } from "#/ui/ZitadelLogo";
import React from "react";
2023-04-03 13:39:51 +02:00
export default async function Layout({
children,
}: {
children: React.ReactNode;
}) {
return (
2023-04-25 09:16:19 +02:00
<div className="mx-auto flex flex-col items-center space-y-4">
2023-04-14 17:22:59 +02:00
<div className="relative">
<ZitadelLogo height={70} width={180} />
2023-04-03 13:39:51 +02:00
</div>
<div className="w-full">{children}</div>
<div className="flex flex-row justify-between"></div>
</div>
);
}