"use client"; import { Smile, Activity, AlertTriangle, Star, Plus, Sparkles } from "lucide-react"; import {SATISFACTION_DRIVERS,TICKETS_DATA} from "@/constants/constant"; 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 */}
{/* 3. Metrics Cards Grid (4 Columns) */}
{/* Card 1: Engagement Score */}
+4 vs Q1
82%

Engagement score

{/* Card 2: Survey Response */}
this pulse
71%

Survey response

{/* Card 3: Open Tickets */}
to resolve
2

Open tickets

{/* Card 4: CSAT */}
of 5.0
4.2

CSAT

{/* 4. Double Columns layout (Drivers & Tickets lists) */}
{/* 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 )}
))}
); }