"use client"; import Link from "next/link"; import { Button } from "./ui/button"; import { ChevronLeft, Download } from "lucide-react"; import { useTimelineStore } from "@/stores/timeline-store"; import { HeaderBase } from "./header-base"; import { formatTimeCode } from "@/lib/time"; import { useProjectStore } from "@/stores/project-store"; export function EditorHeader() { const { getTotalDuration } = useTimelineStore(); const { activeProject } = useProjectStore(); const handleExport = () => { // TODO: Implement export functionality console.log("Export project"); }; const leftContent = (