diff --git a/database/Other/podcasts.json b/database/Other/podcasts.json new file mode 100644 index 000000000..2c84ac238 --- /dev/null +++ b/database/Other/podcasts.json @@ -0,0 +1,9 @@ +[ + { + "name": "Open Source Stories", + "description": "Founded by Amanda Casari and Julia Ferraioli, Open Source Stories is a podcast where individuals record their experiences about being in the open source community. In contrast to other podcasts, these stories are saved in the StoryCorps archive at the United States Congress! So what are you waiting for? Share your story!", + "url": "https://www.opensourcestories.org/", + "category": "other", + "subcategory": "podcasts" + } +] diff --git a/database/data.ts b/database/data.ts index 852a230ff..2403acde0 100644 --- a/database/data.ts +++ b/database/data.ts @@ -65,6 +65,7 @@ export const sidebarData: ISidebar[] = [ subcategory: [ { name: 'Github', url: '/github' }, { name: 'Dev Tools', url: '/devtools' }, + { name: 'Podcasts', url: '/podcasts' }, ], }, ] diff --git a/database/index.ts b/database/index.ts index ba93106e9..c3a484c24 100644 --- a/database/index.ts +++ b/database/index.ts @@ -30,6 +30,7 @@ export { default as youtubTesting } from "./youtube/testing.json"; // other export { default as github } from "./Other/Github.json"; export { default as devtools } from "./Other/devtools.json"; +export { default as podcasts } from "./Other/podcasts.json"; //languages export { default as javascript } from "./languages/javascript.json"; export { default as python } from "./languages/python.json";