import Link from "next/link"; import { Button } from "@/components/ui/button"; import { Film } from "lucide-react"; interface VideoNotFoundProps { params: Promise<{ projectId: string; videoId: string }>; } export default async function VideoNotFound({ params }: VideoNotFoundProps) { const { projectId } = await params; return (

Video Not Found

The video you're looking for doesn't exist or has been deleted.

); }