Change Audiens

This commit is contained in:
Randa Firman Putra
2025-06-28 06:15:50 +07:00
parent baf9965d64
commit 37d083ec31
18 changed files with 906 additions and 318 deletions

View File

@@ -13,7 +13,6 @@ interface ClientLayoutProps {
export default function ClientLayout({ children }: ClientLayoutProps) {
const [isSidebarCollapsed, setIsSidebarCollapsed] = useState(false);
// Load sidebar state from localStorage on mount
useEffect(() => {
const savedState = localStorage.getItem('sidebarCollapsed');
if (savedState !== null) {