/** * Layout Components * * Provides consistent layout structure for the web application. * * Components: * - Layout: Main layout wrapper with sidebar, header, and breadcrumbs * - Header: Top navigation bar with profile menu * - Sidebar: Desktop navigation sidebar * - Breadcrumbs: Contextual navigation breadcrumbs * * @example * ```tsx * import { Layout } from '@/components/Layout'; * * export default function DashboardPage() { * return ( * *
Content here
*
* ); * } * ``` */ export { Layout } from './Layout'; export { Header } from './Header'; export { Sidebar } from './Sidebar'; export { Breadcrumbs } from './Breadcrumbs';