"use client"; import { StatusCard } from "@/components/StatusCard"; import { SessionCard } from "@/components/SessionCard"; import { MemorySnapshotCard } from "@/components/MemorySnapshotCard"; import { useSessions } from "@/lib/hooks"; export default function PulsePage() { const { data: sessionsData, isLoading } = useSessions(8); return (

Pulse

Recent Sessions

{isLoading ? (
{[...Array(3)].map((_, i) => (
))}
) : (
{sessionsData?.items?.map((s) => ( ))} {sessionsData?.items?.length === 0 && (
No sessions yet
)}
)}
); }