{children}
"use client" import { LogoFull } from "@ui/assets/Logo" import { cn } from "@lib/utils" import { dmSansClassName } from "@/lib/fonts" import { motion } from "motion/react" import { BRAIN_STEPS, BRAIN_STEP_LABELS, type BrainStep } from "./types" interface ShellProps { step: BrainStep domain?: string | null steps?: BrainStep[] children: React.ReactNode } export function BrainShell({ step, steps, children }: ShellProps) { const visibleSteps: BrainStep[] = steps ?? BRAIN_STEPS return (