import { useState } from 'react'; import { Recycle, Leaf, Activity, Check, BarChart2, Plus } from "lucide-react"; import Button from "@/components/common/button"; import StatCard from "@/components/common/dashStatCard"; import InfoBanner from '@/components/common/infoBanner'; import { scheduleItems, wasteStreams } from '@/constants/constant'; export default function WasteESGPortal() { return (
{/* --- HEADER SECTION --- */}
Apple One — HQ Tower SUSTAINABILITY WASTE

Waste management

Waste tracked by stream, recycling rates, collection scheduling and ESG reporting with vendor compliance.

{/* --- HEADER BUTTONS --- */}
{/* --- STAT CARDS --- */}
{/* Card 1: Total waste */} {/* Card 2: Diverted rate */} {/* Card 3: Hazardous waste */} {/* Card 4: Vendors compliant */}
{/* --- MAIN CONTENT SECTION BELOW STAT CARDS --- */}
{/* Waste by Stream Progress Chart */}

Waste by stream · kg

June 2026
{wasteStreams.map((item, index) => (
{item.name}
{item.amount}
))}
{/* Collection Schedule Table */}

Collection schedule

{scheduleItems.map((row, idx) => ( ))}
FREQUENCY STREAM VENDOR
{row.frequency} {row.stream} {row.vendor}
); }