mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-10 08:58:31 +00:00
* Feat: v2 * feat: add chat functionality * First cut: integrations * Feat: add conversation API * Enhance conversation handling and memory management * Feat: added conversation --------- Co-authored-by: Manoj K <saimanoj58@gmail.com>
20 lines
700 B
TypeScript
20 lines
700 B
TypeScript
import { Button } from "../ui";
|
|
import Logo from "../logo/logo";
|
|
import { Theme, useTheme } from "remix-themes";
|
|
|
|
export function LoginPageLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="flex min-h-svh flex-col items-center justify-center gap-6 p-6 md:p-10">
|
|
<div className="flex w-full max-w-sm flex-col items-center gap-2">
|
|
<div className="flex size-10 items-center justify-center rounded-md">
|
|
<Logo width={60} height={60} />
|
|
</div>
|
|
<a href="#" className="flex items-center gap-2 self-center font-medium">
|
|
<div className="font-mono">C.O.R.E.</div>
|
|
</a>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|