diff --git a/app/ui/dashboard/global-summary.tsx b/app/ui/dashboard/global-summary.tsx
index 9b00359..8de82ee 100644
--- a/app/ui/dashboard/global-summary.tsx
+++ b/app/ui/dashboard/global-summary.tsx
@@ -1,45 +1,41 @@
/* Copyright (C) 2024 Manuel Bustillo*/
+import { GlobalSummary } from '@/app/lib/definitions';
import { MainCard, SecondaryCard } from '../components/dashboard-cards';
-export default async function GlobalSummary() {
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+export default function GlobalSummary({ summary }: { summary: GlobalSummary }) {
+ return (
+
+
+
+
+
- );
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
}
\ No newline at end of file