feat(agents): Add identity and soul template fields to board creation

This commit is contained in:
Abhimanyu Saharan
2026-02-04 20:21:33 +05:30
parent 1c972edb46
commit c3357f92d9
117 changed files with 7899 additions and 1339 deletions

View File

@@ -2,9 +2,10 @@
import type { ReactNode } from "react";
import { SignedIn, UserButton } from "@clerk/nextjs";
import { SignedIn } from "@clerk/nextjs";
import { BrandMark } from "@/components/atoms/BrandMark";
import { UserMenu } from "@/components/organisms/UserMenu";
export function LandingShell({ children }: { children: ReactNode }) {
return (
@@ -27,9 +28,7 @@ export function LandingShell({ children }: { children: ReactNode }) {
<header className="flex items-center justify-between gap-4">
<BrandMark />
<SignedIn>
<div className="rounded-full border border-[color:var(--border)] bg-[color:var(--surface)] px-2 py-1 shadow-sm">
<UserButton />
</div>
<UserMenu />
</SignedIn>
</header>
<main>{children}</main>