We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65f2070 commit 96b4081Copy full SHA for 96b4081
src/components/Workspaces.tsx
@@ -2,6 +2,7 @@ import { useWorkspacesData } from "@/hooks/useWorkspacesData";
2
import {
3
Cell,
4
Column,
5
+ Heading,
6
LinkButton,
7
Row,
8
Table,
@@ -16,14 +17,19 @@ export function Workspaces() {
16
17
18
return (
19
<div>
- <h1 className="text-4xl">Manage Workspaces</h1>
20
+ <Heading level={1} className="mb-5">
21
+ Manage Workspaces
22
+ </Heading>
23
+
24
<Table aria-label="List of workspaces">
25
<Row>
26
<TableHeader>
- <Column id="name" isRowHeader>
27
+ <Column id="name" isRowHeader className="w-full">
28
Name
29
</Column>
- <Column id="configuration">Configuration</Column>
30
+ <Column id="configuration" className="w-56">
31
+ Configuration
32
+ </Column>
33
</TableHeader>
34
</Row>
35
<TableBody>
0 commit comments