import {
Rocket,
Edit2,
Layout,
Volume2,
Settings,
Maximize2,
} from "lucide-react";
import { Button } from "../../../../components/ui/button";
interface ReviewPublishStepProps {
formData: any;
prevStep: () => void;
setIsPublished: (val: boolean) => void;
}
export function ReviewPublishStep({
formData,
prevStep,
setIsPublished,
}: ReviewPublishStepProps) {
return (
{/* 1. Video Preview Card */}
Video Preview
PROCESSED
{/* Mock Player Control Overlays */}
{/* Bottom Controls — Matching Image 1884 */}
{/* Row 1: Seeker and Timestamps */}
{/* Row 2: Icons */}
{/* 2. Content Details Card */}
Content Details
{/* Metadata Grid */}
TITLE
{formData.title || "Introduction to Past Tense"}
TEACHER NAME
Abebe Kebede
FILE SIZE
245 MB
(1080p MP4)
{/* Description Section */}
{/* Gradient Divider */}
{/* 3. Normal Footer (Inside Card) */}
);
}