'use client' import { Sidebar } from '../navigation/Sidebar' interface DesktopLayoutProps { children: React.ReactNode role?: 'creator' | 'agency' | 'brand' className?: string aiServiceError?: boolean // AI 服务异常状态(仅品牌方使用) } export function DesktopLayout({ children, role = 'creator', className = '', aiServiceError = false, }: DesktopLayoutProps) { return (
{children}
) } export default DesktopLayout