import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, } from "@/components/ui/dialog"; import { Button } from "@/components/ui/button"; import { HelpCircle, Scissors, ArrowRight } from "lucide-react"; export function TutorialHelp() { return ( How Trimming Works Understanding how to cut out unwanted parts of your video.
{/* Explanation */}

The Trim tool works by defining the segments you want to remove. Any part of the timeline that is covered by a red trim segment will be cut out when you export.

{/* Visual Illustration */}

Visual Example

{/* Background track (Kept parts) */}
{/* Solid line representing video */}
{/* Removed Segment 1 */}
REMOVED
{/* Removed Segment 2 */}
REMOVED
{/* Labels for kept parts */}
Kept
Kept
Kept
{/* Result */}
Part 1
Part 2
Part 3
Final Video
{/* Steps */}
1. Add Trim

Press T or click the scissors icon to mark a section for removal.

2. Adjust

Drag the edges of the red region to cover exactly what you want to cut out.

); }