import type { ReactNode } from 'react' import { AuthTicketIcon, SceneDecor } from './AuthDecor' import { ThemeToggle } from './ThemeToggle' export function AuthShell({ children, tagline = '準備好巡樓了嗎?', }: { children: ReactNode tagline?: string }) { return (

Haixun Patrol

巡樓管理台

{tagline}

{children}
) }