import type { ReactNode } from 'react'; type Props = { children: ReactNode; tone?: 'cream' | 'dark'; }; export function MobileShell({ children, tone = 'cream' }: Props) { const isDark = tone === 'dark'; return (