import Link from "next/link"; import type { ReactNode } from "react"; import { LeftNav } from "./LeftNav"; interface AppShellProps { children: ReactNode; // 顶栏右侧的上下文信息(如作品名 / 进度)。 title?: string; subtitle?: string; } // 全局外壳:顶栏(64px) + 左导航 + 主区(UX §5.1)。 export function AppShell({ children, title, subtitle }: AppShellProps) { return (
墨痕 {title ? ( {title} ) : null} {subtitle ? ( {subtitle} ) : null}
{children}
); }