From 2a53cc337c130377de9f7f4e1ddeb9c2f0b64b7a Mon Sep 17 00:00:00 2001 From: UmarAbubacar Date: Sun, 1 Mar 2026 14:53:44 +0000 Subject: [PATCH] Update links from Gitpod to Codespaces in demos and notebooks --- src/pages/examples/demos.js | 2 +- src/pages/examples/notebooks.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/examples/demos.js b/src/pages/examples/demos.js index 352e3dcb..da4a340c 100644 --- a/src/pages/examples/demos.js +++ b/src/pages/examples/demos.js @@ -81,7 +81,7 @@ const Tutorials = ({ data, location }) => { html={"/notebooks/" + edge.node.relativePath} title={edge.node.relativePath.split("_").join(" ")} src={thumbnails[edge.node.relativePath] || '/images/default-demo-thumbnail.png'} - link={"https://gitpod.io/#BDM_TRY_DEMO=" + edge.node.relativePath + "/https://github.com/LukasBreitwieser/gitpod-vnc"}> + link={"https://codespaces.new/BioDynaMo/biodynamoOnline"}> )) } diff --git a/src/pages/examples/notebooks.js b/src/pages/examples/notebooks.js index 70afae0a..0ed57a36 100644 --- a/src/pages/examples/notebooks.js +++ b/src/pages/examples/notebooks.js @@ -80,7 +80,7 @@ const Tutorials = ({ data, location }) => { let json = node.json; let title = name.charAt(0).toUpperCase() + name.slice(1).replace("-", " ") let html = "/" + staticPath.replace(".ipynb", ".html") - let gitpod_link = "https://gitpod.io/#BDM_TRY_NOTEBOOK="+name+"/https://github.com/LukasBreitwieser/gitpod-vnc" + let gitpod_link = "https://codespaces.new/BioDynaMo/biodynamoOnline" const cleaned_first_cell = json['cells'][0]['source'].reduce((acc, text) => acc + text.replace("#", "")).replace("#", "").split("**"); let notebookTitle = cleaned_first_cell[0].trim(); let Author = cleaned_first_cell[1].trim();