File tree Expand file tree Collapse file tree 3 files changed +27
-28
lines changed Expand file tree Collapse file tree 3 files changed +27
-28
lines changed Original file line number Diff line number Diff line change @@ -268,22 +268,17 @@ function UsageView({ attributionId }: UsageViewProps) {
268
268
</ div >
269
269
</ div >
270
270
< div className = "flex flex-col truncate mt-8 text-sm" >
271
- < div className = "text-gray-400 dark:text-gray-500" >
272
- This feature is in{ " " }
271
+ < div className = "text-gray-400 dark:text-gray-500 text-sm text-left " >
272
+ < strong > Usage </ strong > feature is in{ " " }
273
273
< PillLabel
274
274
type = "warn"
275
275
className = "font-semibold mt-2 ml-0 py-0.5 px-1 self-center"
276
276
>
277
- < span className = "text-xs" > Early Access</ span >
277
+ < a href = "https://www.gitpod.io/docs/references/gitpod-releases" >
278
+ < span className = "text-xs" > Early Access</ span >
279
+ </ a >
278
280
</ PillLabel >
279
281
< br />
280
- < a
281
- href = "https://www.gitpod.io/docs/references/gitpod-releases"
282
- className = "gp-link"
283
- >
284
- Learn more
285
- </ a >
286
- ·
287
282
< a
288
283
href = "https://github.com/gitpod-io/gitpod/issues/12636"
289
284
className = "gp-link"
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ import {
29
29
} from "../service/public-api" ;
30
30
import { FeatureFlagContext } from "../contexts/FeatureFlagContext" ;
31
31
import { ConnectError } from "@bufbuild/connect-web" ;
32
+ import PillLabel from "../components/PillLabel" ;
32
33
33
34
export default function NewProject ( ) {
34
35
const location = useLocation ( ) ;
@@ -481,17 +482,18 @@ export default function NewProject() {
481
482
</ div >
482
483
</ div >
483
484
) }
484
- < p className = "text-center w-full mt-12 text-gray-500" >
485
- < strong > Teams & Projects</ strong > are currently in Beta.{ " " }
486
- < a
487
- href = "https://github.com/gitpod-io/gitpod/issues/5095"
488
- target = "gitpod-feedback-issue"
489
- rel = "noopener"
490
- className = "gp-link"
491
- >
485
+ < div className = "text-gray-400 dark:text-gray-500 text-sm mt-24 text-left" >
486
+ < strong > Projects</ strong > feature is in{ " " }
487
+ < PillLabel type = "warn" className = "font-semibold mt-2 ml-0 py-0.5 px-1 self-center" >
488
+ < a href = "https://www.gitpod.io/docs/references/gitpod-releases" >
489
+ < span className = "text-xs" > BETA</ span >
490
+ </ a >
491
+ </ PillLabel >
492
+ ·
493
+ < a href = "https://github.com/gitpod-io/gitpod/issues/5095" className = "gp-link" >
492
494
Send feedback
493
495
</ a >
494
- </ p >
496
+ </ div >
495
497
</ >
496
498
) ;
497
499
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import { TeamsContext } from "./teams-context";
11
11
import { publicApiTeamsToProtocol , publicApiTeamToProtocol , teamsService } from "../service/public-api" ;
12
12
import { FeatureFlagContext } from "../contexts/FeatureFlagContext" ;
13
13
import { ConnectError } from "@bufbuild/connect-web" ;
14
+ import PillLabel from "../components/PillLabel" ;
14
15
15
16
export default function ( ) {
16
17
const { setTeams } = useContext ( TeamsContext ) ;
@@ -78,17 +79,18 @@ export default function () {
78
79
</ button >
79
80
</ div >
80
81
</ form >
81
- < p className = "text-center w-full mt-12 text-gray-500" >
82
- < strong > Teams & Projects</ strong > are currently in Beta.{ " " }
83
- < a
84
- href = "https://github.com/gitpod-io/gitpod/issues/5095"
85
- target = "gitpod-feedback-issue"
86
- rel = "noopener"
87
- className = "gp-link"
88
- >
82
+ < div className = "text-gray-400 dark:text-gray-500 text-sm mt-24 text-left" >
83
+ < strong > Teams</ strong > feature is in{ " " }
84
+ < PillLabel type = "warn" className = "font-semibold mt-2 ml-0 py-0.5 px-1 self-center" >
85
+ < a href = "https://www.gitpod.io/docs/references/gitpod-releases" >
86
+ < span className = "text-xs" > BETA</ span >
87
+ </ a >
88
+ </ PillLabel >
89
+ ·
90
+ < a href = "https://github.com/gitpod-io/gitpod/issues/5095" className = "gp-link" >
89
91
Send feedback
90
92
</ a >
91
- </ p >
93
+ </ div >
92
94
</ div >
93
95
) ;
94
96
}
You can’t perform that action at this time.
0 commit comments