'use client' import { useState, useCallback } from 'react' import dynamic from 'next/dynamic' import ContentHeader from './ContentHeader' // Load sidebar only on the client — prevents SSR flash const Sidebar = dynamic(() => import('./Sidebar'), { ssr: false, // Placeholder reserves the sidebar's space in the server HTML // so page content never occupies the sidebar zone loading: () => (