import { Container } from '@/ui/Container'; import { Stack } from '@/ui/Stack'; import { Box } from '@/ui/Box'; interface OnboardingShellProps { children: React.ReactNode; header?: React.ReactNode; footer?: React.ReactNode; sidebar?: React.ReactNode; } /** * OnboardingShell * * Semantic layout wrapper for the onboarding flow. * Follows "Precision Racing Minimal" theme with dark surfaces and clean structure. */ export function OnboardingShell({ children, header, footer, sidebar }: OnboardingShellProps) { return ( {header && ( {header} )} {children} {sidebar && ( {sidebar} )} {footer && ( {footer} )} ); }