1
- import { faRailway , faVercel , Icon } from "@rivet-gg/icons" ;
1
+ import { faQuestionCircle , faRailway , faVercel , Icon } from "@rivet-gg/icons" ;
2
2
import { useInfiniteQuery , useQuery } from "@tanstack/react-query" ;
3
3
import {
4
4
createFileRoute ,
5
5
notFound ,
6
6
Link as RouterLink ,
7
7
} from "@tanstack/react-router" ;
8
8
import { match } from "ts-pattern" ;
9
+ import { HelpDropdown } from "@/app/help-dropdown" ;
9
10
import { RunnersTable } from "@/app/runners-table" ;
10
11
import { Button , DocsSheet , H1 , H3 , Link , Skeleton } from "@/components" ;
11
12
import {
@@ -34,6 +35,16 @@ function RouteComponent() {
34
35
< div className = "bg-card h-full border my-2 mr-2 rounded-lg" >
35
36
< div className = "max-w-5xl mt-2 flex justify-between items-center px-6 py-4" >
36
37
< H1 > Connect</ H1 >
38
+ < div >
39
+ < HelpDropdown >
40
+ < Button
41
+ variant = "outline"
42
+ startIcon = { < Icon icon = { faQuestionCircle } /> }
43
+ >
44
+ Need help?
45
+ </ Button >
46
+ </ HelpDropdown >
47
+ </ div >
37
48
</ div >
38
49
< p className = "max-w-5xl mb-6 px-6 text-muted-foreground" >
39
50
Connect your RivetKit application to Rivet Cloud. Use your cloud
@@ -51,9 +62,9 @@ function RouteComponent() {
51
62
< div className = "p-4 px-6 max-w-5xl " >
52
63
< Skeleton className = "h-8 w-48 mb-4" />
53
64
< div className = "flex flex-wrap gap-2 my-4" >
54
- < Skeleton className = "h-10 w-32 rounded-md" />
55
- < Skeleton className = "h-10 w-32 rounded-md" />
56
- < Skeleton className = "h-10 w-32 rounded-md" />
65
+ < Skeleton className = "min-w-48 h-auto min-h-28 rounded-md" />
66
+ < Skeleton className = "min-w-48 h-auto min-h-28 rounded-md" />
67
+ < Skeleton className = "min-w-48 h-auto min-h-28 rounded-md" />
57
68
</ div >
58
69
</ div >
59
70
</ >
@@ -64,7 +75,7 @@ function RouteComponent() {
64
75
< Button
65
76
size = "lg"
66
77
variant = "outline"
67
- className = "min-w-32 "
78
+ className = "min-w-48 h-auto min-h-28 text-xl "
68
79
startIcon = { < Icon icon = { faRailway } /> }
69
80
asChild
70
81
>
@@ -78,7 +89,7 @@ function RouteComponent() {
78
89
< Button
79
90
size = "lg"
80
91
variant = "outline"
81
- className = "min-w-32 "
92
+ className = "min-w-48 h-auto min-h-28 text-xl "
82
93
startIcon = { < Icon icon = { faVercel } /> }
83
94
asChild
84
95
>
0 commit comments