diff --git a/src/assets/data/tutorials/index.js b/src/assets/data/tutorials/index.js index abc83414eb1ed..620c78325e5d9 100644 --- a/src/assets/data/tutorials/index.js +++ b/src/assets/data/tutorials/index.js @@ -202,6 +202,23 @@ const data = [ }, ], }, + { + date: "2026-05-01", + topic: "Meshery Relationships", + resources: { + slides: "https://docs.google.com/presentation/d/1isBoZmsNi9AOrI7mUvpeBeF5QtEGK0ACV11Q9hoqG_I/edit?slide=id.g34a2b009d75_0_23#slide=id.g34a2b009d75_0_23", + recording: [ + "https://www.youtube.com/live/IJ0wtrQWxhw?si=WhI7PcCgm75zB-b0", + "https://www.youtube.com/live/UmSjNNKaJo8?si=qrvkiVyFd8Uk0h96" + ], + }, + presenters: [ + { + link: "/community/members/yash-vilas-mahakal", + name: "Yash Vilas Mahakal" + }, + ], + }, ]; export default data; diff --git a/src/sections/Community/Newcomers-guide/Tutorials-table/index.js b/src/sections/Community/Newcomers-guide/Tutorials-table/index.js index ebfd1ce9315fe..c6414735e67ce 100644 --- a/src/sections/Community/Newcomers-guide/Tutorials-table/index.js +++ b/src/sections/Community/Newcomers-guide/Tutorials-table/index.js @@ -52,7 +52,17 @@ const TutorialsTable = () => { return (
{data.resources.slides ? Slides : ""} - {data.resources.recording ? Recording : ""} + {data.resources.recording ? ( + Array.isArray(data.resources.recording) ? ( + data.resources.recording.map((rec, i) => ( + + Recording {i + 1} + + )) + ) : ( + Recording + ) + ) : ""}
); } @@ -91,7 +101,7 @@ const TutorialsTable = () => {| @@ -102,7 +112,7 @@ const TutorialsTable = () => { ))} |
|---|