"use client"; import { motion } from 'framer-motion'; import { Activity, Zap, ShieldAlert, Cpu } from 'lucide-react'; export default function DashboardPage() { return (

SYSTEM_OVERVIEW

Real-time status of all autonomous agents.

Status: RUNNING
{[ { title: 'Lots Scanned', value: '142,893', icon: Activity, color: 'text-primary' }, { title: 'Active Targets', value: '84', icon: Zap, color: 'text-accent' }, { title: 'Alerts Fired', value: '1,204', icon: ShieldAlert, color: 'text-destructive' }, { title: 'AI Decisions', value: '89,430', icon: Cpu, color: 'text-primary' }, ].map((stat, i) => (
{stat.title}
{stat.value}
))}

LIVE_ACTIVITY_LOG

[10:42:01] Scout Agent detected new items on eBay_UK...
[10:41:55] Analyst Agent processing 14 lots for "RTX 4090"...
[10:41:30] MATCH FOUND: "RTX 4090 Box Only" - Rejected by AI (Reason: Scam)
[10:40:12] HIGH VALUE MATCH: "ThinkPad T14 Gen 3" - $450 (Est: $800). Alert Sent.
[10:39:45] Strategist Agent optimizing scrape timings for ShopGoodwill...

NODE_HEALTH

eBay US 100%
eBay UK 98%
HiBid 85%
ShopGoodwill 99%
); }