This commit is contained in:
ct
2025-06-13 09:44:18 +08:00
parent 8d6e86ebb3
commit 2fd4d42aec
54 changed files with 9917 additions and 184 deletions

View File

@@ -1,7 +1,6 @@
import AppLayout from '@/layouts/app-layout';
import { type BreadcrumbItem } from '@/types';
import { Head } from '@inertiajs/react';
import VideoTimelineViewer from './partials/VideoTimelineViewer';
const breadcrumbs: BreadcrumbItem[] = [
{
@@ -14,9 +13,7 @@ export default function Dashboard() {
return (
<AppLayout breadcrumbs={breadcrumbs}>
<Head title="Dashboard" />
<div className="flex h-full flex-1 flex-col gap-4 rounded-xl p-4">
<VideoTimelineViewer></VideoTimelineViewer>
</div>
<div className="flex h-full flex-1 flex-col gap-4 rounded-xl p-4"></div>
</AppLayout>
);
}