File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
packages/web/src/app/onboard Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ interface OnboardingStep {
28
28
}
29
29
30
30
interface ResourceCard {
31
+ id : string
31
32
title : string
32
33
description : string
33
34
href : string
@@ -67,12 +68,14 @@ export default async function Onboarding({ searchParams }: OnboardingProps) {
67
68
68
69
const resourceCards : ResourceCard [ ] = [
69
70
{
71
+ id : "code-host-connections" ,
70
72
title : "Code host connections" ,
71
73
description : "Learn how to index repos across Sourcebot's supported platforms" ,
72
74
href : "https://docs.sourcebot.dev/docs/connections/overview" ,
73
75
icon : < GitBranchIcon className = "w-4 h-4" /> ,
74
76
} ,
75
77
{
78
+ id : "authentication-system" ,
76
79
title : "Authentication system" ,
77
80
description : "Learn how to setup additional auth providers, invite members, and more" ,
78
81
href : "https://docs.sourcebot.dev/docs/configuration/auth" ,
@@ -153,6 +156,7 @@ export default async function Onboarding({ searchParams }: OnboardingProps) {
153
156
< div className = "grid grid-cols-1 gap-3" >
154
157
{ resourceCards . map ( ( resourceCard ) => (
155
158
< a
159
+ key = { resourceCard . id }
156
160
href = { resourceCard . href }
157
161
target = "_blank"
158
162
rel = "noopener"
You can’t perform that action at this time.
0 commit comments