+
+
+ {data?.data.map((data) => (
+
+ ))}
+
+
+
+ )}
+ >
);
};
diff --git a/apps/user/src/components/Home/index.tsx b/apps/user/src/components/Home/index.tsx
index 4468287..5e3cc96 100644
--- a/apps/user/src/components/Home/index.tsx
+++ b/apps/user/src/components/Home/index.tsx
@@ -1,16 +1,37 @@
+"use client";
+
import React from "react";
import * as S from "./style";
-import { Flex } from "@checkin/ui";
+import { Card, CardTitle, Flex } from "@checkin/ui";
import TodayLectures from "./TodayLectures";
import Notifiction from "./Notifiction";
import Absence from "./Absence";
import Attend from "./Attend";
+import { Suspense } from "@suspensive/react";
+import { CalendarIcon, LectureIcon } from "@checkin/icon";
+import Token from "@/libs/token/Token";
+import { ACCESS_TOKEN_KEY } from "@/constant/Token/Token.constant";
const Home = () => {
return (