import React from 'react'; import './TutorialPanel.css'; interface Props { isOpen: boolean; onClose: () => void; } const TutorialPanel: React.FC = ({ isOpen, onClose }) => { if (!isOpen) return null; return (

🚀 Quick Start Tutorial

1
Locate your site

Use the 🔍 search bar in the top menu to find your facility or site area.

2
Lock the Map

When you've framed your site, click 🔓 Lock Map. This enables the placement and editing mode.

3
Add Processes

Click ⚙️ Add Process in the top menu to create a new process group for your site.

4
Geospatial Placement

Click the 📍 icon next to a process name in the left panel, then click on the map to place its marker.

5
Enter Stream Data

Expand a process to add Hot/Cold Streams. Enter Temperatures (°C) and CP (kW/K) to track heat loads.

6
Analyze Potential

Switch to the Potential Analysis page in the sidebar to see energy savings and pinch integration curves.

💡 Tip: Double-click map bubbles to jump to their data editing controls in the sidebar.

); }; export default TutorialPanel;