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();