'use client' import { Sidebar } from '../navigation/Sidebar' interface DesktopLayoutProps { children: React.ReactNode role?: 'creator' | 'agency' | 'brand' className?: string } export function DesktopLayout({ children, role = 'creator', className = '', }: DesktopLayoutProps) { return (