diff --git a/components/Dashboard/Rooms.tsx b/components/Dashboard/Rooms.tsx
index 90541e0..a717ad1 100644
--- a/components/Dashboard/Rooms.tsx
+++ b/components/Dashboard/Rooms.tsx
@@ -21,7 +21,7 @@ import { Collections } from "../../services/collections";
import { useTeamDashboardContext } from "../../contexts/teamDashboardContext";
import Room, { RoomStatus, RoomType } from "../../models/room";
import { useAuth } from "../../contexts/authContext";
-import { Dropdown, Menu, Radio } from "antd";
+import { Dropdown, Menu, Radio, Tooltip } from "antd";
import RoomCard from "../RoomCard";
enum RoomTypeFilter {
@@ -185,61 +185,63 @@ export default function DashboardRoom() {
{/* header */}
-
-
-
- Rooms
-
-
-
-
-
-
- Week
+
-
- handleModalType(ShowModalType.createRoom)}
- className="bg-gray-300 bg-opacity-25 p-2 rounded hover:bg-opacity-40"
- >
-
-
+ setSelectedTabPane(e.target.value)}
+ >
+
+ {RoomTypeFilter.all}{" "}
+ {allRooms.length}
+
+
+ {RoomTypeFilter.me}{" "}
+ {meRooms.length}
+
+
+ {RoomTypeFilter.live}{" "}
+
+ {liveRooms.length}
+
+
+
+ {RoomTypeFilter.archived}{" "}
+
+ {archivedRooms.length}
+
+
+
-
-
+
+
+ Week
+
+
+
+ handleModalType(ShowModalType.createRoom)}
+ className="bg-gray-300 bg-opacity-25 p-2 rounded hover:bg-opacity-40"
+ >
+
+
+
+
+
+
{/* all rooms */}