- {PLACEHOLDER_COLUMNS.map((col) => (
-
- {col.tasks.map((task, i) => (
-
- ))}
-
- ))}
+
+
+
+
+ {PLACEHOLDER_COLUMNS.map((col) => (
+
+ {col.tasks.map((task, i) => (
+
+ ))}
+
+ ))}
+
{generatedRequest === null && (
diff --git a/clients/web/src/routes/_protected/rooms.index.tsx b/clients/web/src/routes/_protected/rooms.index.tsx
index c01155c2..5f1cb74b 100644
--- a/clients/web/src/routes/_protected/rooms.index.tsx
+++ b/clients/web/src/routes/_protected/rooms.index.tsx
@@ -4,9 +4,8 @@ import { usePostRoomsHook } from "@shared/api/generated/endpoints/rooms/rooms";
import { useQuery } from "@tanstack/react-query";
import type { Request, RoomWithOptionalGuestBooking } from "@shared";
import { GlobalTaskInput } from "@/components/ui/GlobalTaskInput";
-import { SortByContainer } from "@/components/rooms/SortByContainer";
import { PageShell } from "@/components/ui/PageShell";
-import { RoomsHeader } from "@/components/rooms/RoomsHeader";
+import { RoomsToolbar } from "@/components/rooms/RoomsToolbar";
import { RoomsList } from "@/components/rooms/RoomsList";
import { RoomDetailsDrawer } from "@/components/rooms/RoomDetailsDrawer";
import { GeneratedRequestDrawer } from "@/components/requests/GeneratedRequestDrawer";
@@ -50,18 +49,22 @@ function RoomsPage() {
return (
- }
+ header={{
+ title: "Rooms",
+ description:
+ "Find any room and access essential details like availability, occupancy, and status at a glance.",
+ }}
drawerOpen={generatedRequest !== null || selectedRoom !== null}
drawer={drawerContent}
bodyClassName="overflow-hidden"
- contentClassName={"h-full pb-26.5"}
+ contentClassName={"h-full"}
>
-
+