diff --git a/site/src/pages/WorkspacesPage/WorkspacesPageView.tsx b/site/src/pages/WorkspacesPage/WorkspacesPageView.tsx
index bdb97241e3383..d3a92c44e5769 100644
--- a/site/src/pages/WorkspacesPage/WorkspacesPageView.tsx
+++ b/site/src/pages/WorkspacesPage/WorkspacesPageView.tsx
@@ -21,6 +21,8 @@ import { Filter } from "./filter/filter"
import { hasError, isApiValidationError } from "api/errors"
import { workspaceFilterQuery } from "utils/filters"
import { SearchBarWithFilter } from "components/SearchBarWithFilter/SearchBarWithFilter"
+import Box from "@mui/material/Box"
+import Skeleton from "@mui/material/Skeleton"
export const Language = {
pageTitle: "Workspaces",
@@ -143,6 +145,28 @@ export const WorkspacesPageView: FC<
/>
)}
+
+ theme.palette.text.secondary,
+ "& strong": { color: (theme) => theme.palette.text.primary },
+ }}
+ >
+ {workspaces ? (
+ <>
+ Showing {workspaces?.length} of{" "}
+ {count} workspaces
+ >
+ ) : (
+
+
+
+ )}
+
+