import React from 'react'; import { useNavigate } from 'react-router-dom'; interface LabCardProps { title: string; description: string; icon: string; path: string; color: string; status?: string; } const LabCard: React.FC = ({ title, description, icon, path, color, status }) => { const navigate = useNavigate(); return (
navigate(path)} style={{ background: 'rgba(255, 255, 255, 0.03)', backdropFilter: 'blur(10px)', border: `1px solid ${color}44`, borderRadius: '16px', padding: '24px', cursor: 'pointer', transition: 'all 0.3s cubic-bezier(0.4, 0, 0.2, 1)', display: 'flex', flexDirection: 'column', gap: '12px', position: 'relative', overflow: 'hidden' }} className="lab-card" >
{icon}

{title}

{description}

{status && (
{status}
)}
INITIATE PROTOCOL โ†’
{/* Hover Glint Effect */}
); }; const LabSelector: React.FC = () => { const labs: LabCardProps[] = [ { title: "Chemistry Lab", description: "Advanced molecular design, synthesis planning, and reaction kinetics simulation.", icon: "๐Ÿงช", path: "/lab/chemistry", color: "#646cff", status: "High Fidelity" }, { title: "Oncology Lab", description: "Specialized hub for medicinal discovery, drug responses, and tumor modeling.", icon: "๐Ÿ”ฌ", path: "/lab/oncology", color: "#ff4444", status: "Experimental" }, { title: "Materials Lab", description: "Crystal lattice engineering, structural stress analysis, and property prediction.", icon: "๐Ÿงฑ", path: "/lab/materials", color: "#ffaa00", status: "High Fidelity" }, { title: "Physics Lab", description: "Classical and fluid dynamics simulations with real-time particle tracking.", icon: "โš›๏ธ", path: "/lab/physics", color: "#00d4ff", status: "Stable" }, { title: "Propulsion Lab", description: "Hot-fire testing and aerospace engineering for deep-space transport.", icon: "๐Ÿš€", path: "/lab/propulsion", color: "#ff4500", status: "Active" }, { title: "Astro Lab", description: "Spectral analysis and orbital mechanics in high-fidelity star systems.", icon: "โœจ", path: "/lab/astro", color: "#00ffff", status: "Active" } ]; return (

QULAB INFINITE

Select a facility to begin autonomous invention and discovery.

{labs.map((lab, index) => ( ))}

Meta-Orchestration

Utilize the Hive Mind to coordinate multiple labs into a single autonomous workflow.

); }; export default LabSelector;