Skip to content

chore: update first-time legacy message #3712

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 4, 2025
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions client/src/features/dashboard/components/ProjectsDashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import ListBarSession from "../../../components/list/ListBarSessions";
import { SortingOptions } from "../../../components/sortingEntities/SortingEntities";
import { Notebook } from "../../../notebooks/components/session.types";
import { urlMap } from "../../../project/list/ProjectList.container";
import { Docs } from "../../../utils/constants/Docs";
import { Links } from "../../../utils/constants/Docs";
import AppContext from "../../../utils/context/appContext";
import useAppDispatch from "../../../utils/customHooks/useAppDispatch.hook";
import useAppSelector from "../../../utils/customHooks/useAppSelector.hook";
Expand Down Expand Up @@ -80,36 +80,36 @@ function ProjectAlert({ total }: ProjectAlertProps) {
<strong>You do not have any projects yet.</strong>
</h3>
<p>
If you are here for your first time, we recommend you go to through
our{" "}
You are accessing the &quot;legacy&quot; version of Renku. If you are
here for your first time, we recommend that you go to{" "}
<ExternalLink
role="text"
title="tutorial"
title="Renku 2.0"
className="fw-bold"
url={Docs.READ_THE_DOCS_TUTORIALS_STARTING}
url={"/"}
/>
. You can also{" "}
and follow the{" "}
<ExternalLink
role="text"
title="create a new project"
url="/v1/projects/new"
title="hands-on tutorial"
url={Links.RENKU_2_HANDS_ON_TUTORIAL}
className="fw-bold"
/>
,{" "}
. You may also{" "}
<ExternalLink
role="text"
title="explore other projects"
url="/v1/search"
url="/search"
className="fw-bold"
/>{" "}
or{" "}
or learn more about Renku features in our{" "}
<ExternalLink
role="text"
title="search"
url="/v1/search"
title="Community Portal"
url={Links.RENKU_2_COMMUNITY_PORTAL}
className="fw-bold"
/>{" "}
for a specific project or dataset.
/>
.
</p>
</div>
</InfoAlert>
Expand Down
10 changes: 6 additions & 4 deletions client/src/utils/constants/Docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,21 +52,23 @@ const Links = {
RENKU_2_HOW_TO_USE_OWN_DOCKER_IMAGE:
"https://renku.notion.site/How-to-use-your-own-docker-image-for-a-session-launcher-11f0df2efafc80af848ffcaf9ccff31c",
RENKU_2_COMMUNITY_PORTAL:
"https://www.notion.so/renku/Renku-Community-Portal-2a154d7d30b24ab8a5968c60c2592d87",
"https://renku.notion.site/Renku-Community-Portal-2a154d7d30b24ab8a5968c60c2592d87",
RENKU_2_DOCUMENTATION:
"https://www.notion.so/renku/Documentation-db396cfc9a664cd2b161e4c6068a5ec9",
"https://renku.notion.site/Documentation-db396cfc9a664cd2b161e4c6068a5ec9",
RENKU_2_RESEARCH:
"https://renku.notion.site/Renku-for-Data-Scientists-21d46b16e76e4bc484add8367c44f884",
RENKU_2_TEACHING:
"https://renku.notion.site/Renku-for-Teaching-1460df2efafc809cb134d2a4e32ed90e",
RENKU_2_EVENTS:
"https://renku.notion.site/Renku-for-Events-18c0df2efafc800bb26ae93333b4318d",
RENKU_2_QUICK_START_TUTORIAL:
"https://www.notion.so/renku/Quick-Start-tutorial-1460df2efafc80998204c1f61e333e63",
"https://renku.notion.site/Quick-Start-tutorial-1460df2efafc80998204c1f61e333e63",
RENKU_2_GET_HELP:
"https://www.notion.so/renku/Get-help-1a2b4b7b0e4746769e246c0328d3d3ad",
"https://renku.notion.site/Get-help-1a2b4b7b0e4746769e246c0328d3d3ad",
RENKU_2_WHY_RENKU:
"https://renku.notion.site/Why-Renku-1900df2efafc80839b26cbad43f24778",
RENKU_2_HANDS_ON_TUTORIAL:
"https://renku.notion.site/Hands-On-Tutorial-1a50df2efafc800f8554e30fd7458fa6",
};

const GitlabLinks = {
Expand Down
Loading