/** * @file app/(app)/summary/sections/SummaryHeader.tsx * @description Client component rendering the analytical page header. */ "use client"; import { BarChart3 } from "lucide-react"; /** * Renders the analytical executive summary header featuring an analytics icon, * workspace indicator, main title, and descriptive subtitle. * * @returns {JSX.Element} The rendered summary header component. */ export default function SummaryHeader() { return (
Analytics & Insights

Executive Summary

Real-time overview of your workspace productivity and workflow metrics.

); }