import { AreaChart, Area, ResponsiveContainer } from 'recharts' import { ServerCog, DatabaseBackup, Rocket, FileText } from 'lucide-react' const trafficData = Array.from({ length: 48 }, (_, i) => ({ time: i, incoming: 800 + Math.sin(i / 6) * 300 + Math.random() * 150, outgoing: 700 + Math.cos(i / 8) * 250 + Math.random() * 100, })) const shortcuts = [ { icon: ServerCog, label: 'Add Server' }, { icon: DatabaseBackup, label: 'Create Backup' }, { icon: Rocket, label: 'Deploy App' }, { icon: FileText, label: 'View Logs' }, ] const cardBase: React.CSSProperties = { backgroundColor: 'rgba(10, 10, 12, 0.92)', border: '1px solid rgba(200, 164, 52, 0.08)', borderRadius: '12px', padding: '20px', boxShadow: '0 0 20px rgba(200, 164, 52, 0.03)', transition: 'border-color 0.2s ease', position: 'relative', overflow: 'hidden', } export default function BottomRow() { return (
{/* Network Traffic */}
{/* Background image at very low opacity */}
{/* Gold top edge */}

Network Traffic

Incoming

1.23 Gbps

↓ 12.4%

Outgoing

1.08 Gbps

↑ 8.7%

{/* Shortcuts — miniature control panels */}

Shortcuts

{shortcuts.map((item) => { const Icon = item.icon return ( ) })}
) }