'use client'; import { Sidebar, Header, MobileNav } from '@/components/layout'; import { CardSection } from '@/components/cards'; import { useSidebar } from '@/app/providers'; import { useAlerts } from '@/components/alerts'; export default function CardsPage() { const { isOpen, toggle, close } = useSidebar(); const { unreadCount } = useAlerts(); return (
); }