Skip to content

Commit 7e1020c

Browse files
[dashboard] chore: Update copy texts for empty /workspaces page (#19998)
* [dashboard] chore: Update copy texts for empty `/workspaces` page * add some top margin
1 parent 8b03f05 commit 7e1020c

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

components/dashboard/src/workspaces/EmptyWorkspacesContent.tsx

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
*/
66

77
import React, { useEffect } from "react";
8-
import { StartWorkspaceModalKeyBinding } from "../App";
98
import { LinkButton } from "@podkit/buttons/LinkButton";
10-
import { Heading1, Heading2, Subheading } from "@podkit/typography/Headings";
9+
import { Heading2, Subheading } from "@podkit/typography/Headings";
1110
import { trackVideoClick } from "../Analytics";
1211

1312
declare global {
@@ -43,7 +42,7 @@ export const EmptyWorkspacesContent = () => {
4342

4443
return (
4544
<div className="app-container flex flex-col space-y-2">
46-
<div className="px-6 mt-12 flex flex-row justify-center space-x-8">
45+
<div className="px-6 mt-16 flex flex-row items-center justify-center space-x-14">
4746
<div>
4847
<iframe
4948
id="gitpod-video"
@@ -57,25 +56,23 @@ export const EmptyWorkspacesContent = () => {
5756
></iframe>
5857
</div>
5958
<div>
60-
<div className="flex flex-col items-left h-96 w-96">
61-
<Heading1 className="text-left mb-4 !font-semibold !text-2xl">Welcome to Gitpod</Heading1>
62-
<Heading2 className="text-left !mb-0 !font-semibold !text-lg">
59+
<div className="flex flex-col items-left justify-center h-96 w-96">
60+
<Heading2 className="text-left mb-4 !font-semibold !text-lg">
6361
Create your first workspace
6462
</Heading2>
6563
<Subheading className="text-left max-w-xs">
66-
A workspace is a cloud development environment
64+
Write code in your personal development environment that’s running in the cloud
6765
</Subheading>
6866
<span className="flex flex-col space-y-4 w-fit">
6967
<LinkButton
7068
variant="secondary"
71-
className="mt-4 border border-pk-content-secondary text-pk-content-secondary bg-pk-surface-secondary"
69+
className="mt-4 border !border-pk-content-invert-primary text-pk-content-secondary bg-pk-surface-secondary"
7270
href={"/new?showExamples=true"}
7371
>
74-
Try a configured demo repo
72+
Try a configured demo repository
7573
</LinkButton>
7674
<LinkButton href={"/new"} className="gap-1.5">
77-
Open your repository{" "}
78-
<span className="opacity-60 hidden md:inline">{StartWorkspaceModalKeyBinding}</span>
75+
Configure your own repository
7976
</LinkButton>
8077
</span>
8178
</div>

0 commit comments

Comments
 (0)