5
5
*/
6
6
7
7
import React , { useEffect } from "react" ;
8
- import { StartWorkspaceModalKeyBinding } from "../App" ;
9
8
import { LinkButton } from "@podkit/buttons/LinkButton" ;
10
- import { Heading1 , Heading2 , Subheading } from "@podkit/typography/Headings" ;
9
+ import { Heading2 , Subheading } from "@podkit/typography/Headings" ;
11
10
import { trackVideoClick } from "../Analytics" ;
12
11
13
12
declare global {
@@ -43,7 +42,7 @@ export const EmptyWorkspacesContent = () => {
43
42
44
43
return (
45
44
< 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 " >
47
46
< div >
48
47
< iframe
49
48
id = "gitpod-video"
@@ -57,25 +56,23 @@ export const EmptyWorkspacesContent = () => {
57
56
> </ iframe >
58
57
</ div >
59
58
< 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" >
63
61
Create your first workspace
64
62
</ Heading2 >
65
63
< 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
67
65
</ Subheading >
68
66
< span className = "flex flex-col space-y-4 w-fit" >
69
67
< LinkButton
70
68
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"
72
70
href = { "/new?showExamples=true" }
73
71
>
74
- Try a configured demo repo
72
+ Try a configured demo repository
75
73
</ LinkButton >
76
74
< 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
79
76
</ LinkButton >
80
77
</ span >
81
78
</ div >
0 commit comments