"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"; // Import your custom Card components import { Card } from "@/utils/cardWrapper"; import { CardHeader } from "@/utils/cardHeader"; 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 */}
{/* --- STAT CARD GRID --- */}
{/* --- TWO COLUMNS (DRIVERS & TICKETS LISTS) --- */}
{/* Left Column: Satisfaction Drivers */}
{SATISFACTION_DRIVERS.map((driver) => (
{driver.label} {driver.score}
{/* Track line background */}
{/* Filled bar width */}
))}
{/* Right Column: Tickets & Suggestions */}
{TICKETS_DATA.map((ticket, index) => (

{ticket.title}

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