ProjectClaimLayout() — supabase Function Reference
Architecture documentation for the ProjectClaimLayout() function in layout.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/interfaces/Organization/ProjectClaim/layout.tsx lines 9–46
export const ProjectClaimLayout = ({
children,
title,
className,
}: PropsWithChildren<{
title: ReactNode
className?: string
}>) => {
return (
<>
<div className="flex flex-row justify-between mx-auto w-full h-[52px] items-center px-4">
<div className="flex items-center gap-2">
<span className="sr-only">Supabase</span>
<Image
src={`${BASE_PATH}/img/supabase-logo.svg`}
alt="Supabase Logo"
height={20}
width={20}
/>
<span className="truncate">{title}</span>
</div>
<div className="flex items-center gap-x-2">
<FeedbackDropdown className="hidden xs:flex" />
<UserDropdown />
</div>
</div>
<Separator />
<div
className={cn(
'overflow-y-auto max-h-[calc(100vh-70px)] flex justify-center flex-grow',
className
)}
>
<div className="w-full h-full max-w-md">{children}</div>
</div>
</>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free