'use client'; import { ProjectFilter } from './project-filter'; import { VideoDragDropUploader } from '@/components/video-drag-drop-uploader'; interface SerializedProject { id: string; name: string; description: string | null; visibility: string; updatedAt: string; workspaceId: string | null; workspaceName: string | null; memberCount: number; videoCount: number; } interface DashboardClientProps { serializedProjects: SerializedProject[]; workspaces: { id: string; name: string }[]; totalPages: number; canCreateProjects: boolean; canUploadVideos: boolean; bunnyUploadsEnabled: boolean; } export function DashboardClient({ serializedProjects, workspaces, totalPages, canCreateProjects, canUploadVideos, bunnyUploadsEnabled, }: DashboardClientProps) { return (
); }