From d21771702cdd6b5127b3d37d1588cefdefc6011c Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 23:19:57 +0000 Subject: [PATCH] Update src/app/dashboard/page.tsx --- src/app/dashboard/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 649c90e..852a483 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -6,13 +6,13 @@ import { useState } from "react"; import { Upload, Music, BookOpen, Download, Play, Plus } from "lucide-react"; export default function DashboardPage() { - const [uploadedFiles, setUploadedFiles] = useState>([] - { id: "1", name: "Calculus I - Chapter 3.pdf", status: "ready", audioUrl: "/audio/calculus-3.mp3" }, + const [uploadedFiles, setUploadedFiles] = useState>([{ + id: "1", name: "Calculus I - Chapter 3.pdf", status: "ready", audioUrl: "/audio/calculus-3.mp3" }, { id: "2", name: "Biology Notes - Photosynthesis.docx", status: "processing" }, ]); - const [materials, setMaterials] = useState>([] - { id: "m1", title: "Physics Fundamentals", creator: "Prof. James Chen", subject: "Physics", downloads: 1250 }, + const [materials, setMaterials] = useState>([{ + id: "m1", title: "Physics Fundamentals", creator: "Prof. James Chen", subject: "Physics", downloads: 1250 }, { id: "m2", title: "History of Africa", creator: "Dr. Amara Okonkwo", subject: "History", downloads: 892 }, { id: "m3", title: "Advanced Chemistry", creator: "Prof. Sarah Kipchoge", subject: "Chemistry", downloads: 654 }, { id: "m4", title: "Literature Analysis", creator: "Dr. Kwesi Mensah", subject: "Literature", downloads: 456 },