Skip to content

Commit dae1529

Browse files
Fix docs URLs (#20270)
1 parent 7b8a3d9 commit dae1529

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/dashboard/src/menu/Menu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ const UserMenu: FC<UserMenuProps> = ({ user, className, withAdminLink, withFeedb
200200
},
201201
{
202202
title: "Docs",
203-
href: "https://www.gitpod.io/docs/",
203+
href: "https://www.gitpod.io/docs/introduction",
204204
target: "_blank",
205205
rel: "noreferrer",
206206
},

components/dashboard/src/workspaces/Workspaces.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ const WorkspacesPage: FunctionComponent = () => {
188188
<h3 className="text-lg font-semibold text-pk-content-primary">Documentation</h3>
189189
<div className="flex flex-col gap-1 w-fit">
190190
<a
191-
href="https://www.gitpod.io/docs"
191+
href="https://www.gitpod.io/docs/introduction"
192192
target="_blank"
193193
rel="noopener noreferrer"
194194
className="text-sm text-pk-content-primary items-center gap-x-2 flex flex-row"

components/gitpod-cli/cmd/docs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
)
1010

1111
// URL of the Gitpod documentation
12-
const DocsUrl = "https://www.gitpod.io/docs"
12+
const DocsUrl = "https://www.gitpod.io/docs/introduction"
1313

1414
var docsCmd = &cobra.Command{
1515
Use: "docs",

0 commit comments

Comments
 (0)