import React from 'react'; import { X, HelpCircle } from 'lucide-react'; interface SidePanelProps { isOpen: boolean; onClose: () => void; } export const SidePanel: React.FC = ({ isOpen, onClose }) => { return (
{/* Header */}

How to use

{/* Instructions */}

1. Upload (Left Panel)

Start by dragging and dropping your audio file into the left panel, or click to browse your device.

2. Configure & Process

Adjust the Remove pauses longer than slider on the left to set your threshold, then click the purple Process Audio button.

3. Preview Results (Right Panel)

Once processed, the result appears on the right. Use the toggle switch to compare the Original vs Processed audio.

4. Export

Click Download Audio to save your new file, or use Copy URL to share a simulation link.

5. Auto-Deletion

Your file will be deleted automatically after 1 hour. Please ensure you download your results.

{/* Footer */}

© 2025 • Neural Falcon

); };