"use client"; import { Smile, ShieldCheck, Database, Leaf, Plus, } from "lucide-react"; import {SATISFACTION_DRIVERS,TICKETS_DATA} from "@/constants/constant"; import StatCard from "../../utils/dashStatCard"; import Button from "@/utils/button"; import InfoBanner from "@/utils/infoBanner"; export default function EngagementPage() { return (
{/* Page Header Section */}
Apple One — HQ Tower · Intelligence · Engagement

Employee engagement

Pulse satisfaction surveys, complaint tickets and a suggestion system — boosting morale, transparency and retention.

{/* Action Buttons */}
{/* Column of StatCard */}
{/* (Drivers & Tickets lists columns) */}
{/* Left Column: Satisfaction Drivers */}

Satisfaction drivers

latest pulse
{SATISFACTION_DRIVERS.map((driver) => (
{driver.label} {driver.score}
{/* Track line background */}
{/* Filled bar width */}
))}
{/* Right Column: Tickets & Suggestions */}

Tickets & suggestions

{TICKETS_DATA.map((ticket, index) => (

{ticket.title}

{ticket.type}
{/* Status Indicator Badges */}
{ticket.status === "OPEN" ? ( OPEN ) : ( CLOSED )}
))}
); }