diff --git a/frontend/src/app/[resultId]/dashboard/page.tsx b/frontend/src/app/[resultId]/dashboard/page.tsx index c92c18f..926cb67 100644 --- a/frontend/src/app/[resultId]/dashboard/page.tsx +++ b/frontend/src/app/[resultId]/dashboard/page.tsx @@ -1,9 +1,51 @@ import PageContent from "@/lib/components/content/PageContent"; +import ProgressBar from "@/lib/components/content/progress-bar/ProgrssBar"; +import List from "@/lib/components/content/list/List"; export default function Page() { + const stats = { + totalSuites: 12, + passed: 8, + failed: 2, + pending: 2, + }; + + const recentActivity = [ + { id: "1", title: "Suite A", status: "passed" }, + { id: "2", title: "Suite B", status: "failed" }, + { id: "3", title: "Suite C", status: "pending" }, + ]; + return ( -

Hello World

+
+
+

Overview

+
+
Total suites{stats.totalSuites}
+
Passed{stats.passed}
+
Failed{stats.failed}
+
Pending{stats.pending}
+
+
+ +
+

Run progress

+ +
+
+ +
+

Recent activity

+ + {recentActivity.map((item) => ( + + {item.title} + {item.status} + + ))} + +
); }