import { useState } from 'react'; import { ShieldCheck, Clock, AlertTriangle, Calendar, Layers, Plus } from "lucide-react"; import Button from "@/components/common/button"; import StatCard from "@/components/common/dashStatCard"; import Table from '@/components/common/dataTable'; import { firesafetyheaders, firesafetyrows } from '@/constants/tabledata'; import { StatusBadge } from '@/components/common/statusBadge'; export default function FireSafetyPortal() { return (
{/* --- HEADER SECTION --- */}
Apple One — HQ Tower COMPLIANCE FIRE & SAFETY

Fire & safety management

Safety-equipment inspections, drill scheduling, evacuation plans and incident reporting with regulatory compliance tracking.

{/* --- HEADER BUTTONS --- */}
{/* --- STAT CARDS --- */}
{/* Card 1: Equipment compliant */} {/* Card 2: Inspections due */} {/* Card 3: Open incidents */} {/* Card 4: Next drill */}
{/* --- MAIN CONTENT LAYOUT --- */}
{/* Left Column: Safety equipment inspection Table */}

Safety equipment inspection

6 asset classes
{/* Right Column: Drill schedule & Incidents */}
{/* Drill schedule Card */}

Drill schedule

{/* Timeline Item 1 */}

Q3 full evacuation drill

Jul 12, 2026 reserved

{/* Timeline Item 2 */}

Wardens refresher

Jun 30, 2026 reserved

{/* Timeline Item 3 */}

Q2 drill · 92% turnout

Apr 14, 2026 completed

{/* Incidents Card */}

Incidents

{/* Incident 1 */}

Minor smoke · pantry

INC-21 Jun 18

{/* Incident 2 */}

Extinguisher low pressure

INC-22 Jun 24

); }