import { type ReactNode } from "react" import { useBrand } from "~/lib/identity" export function AuthShell({ children }: { children: ReactNode }) { return (
{children}
) } export function AuthBrand() { const brand = useBrand() const BrandIcon = brand.icon return (
{brand.name}
) }