diff --git a/components/site-nav/index.js b/components/site-nav/index.js
index 2a5766925..8a7beec44 100644
--- a/components/site-nav/index.js
+++ b/components/site-nav/index.js
@@ -11,7 +11,7 @@ const SiteNav = () => (
diff --git a/pages/podcasts.js b/pages/podcasts.js
new file mode 100644
index 000000000..7af5ad7ce
--- /dev/null
+++ b/pages/podcasts.js
@@ -0,0 +1,131 @@
+import { faCodeBranch, faEnvelope } from '@fortawesome/free-solid-svg-icons';
+import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
+import DefaultLayout from 'layouts/default/index';
+import SiteNav from 'components/site-nav';
+import PageFooter from 'components/page-footer';
+import PageHeader from 'components/page-header';
+import RowBlock from 'components/row-block';
+import siteConfig from 'content/site';
+import { BadgeLink, BadgesList, PrimaryBadge, SecondaryBadge } from 'components/badges';
+import Helmet from 'components/helmet';
+
+
+const PodcastsList = () => (
+
+
+
+
+
+
+
+
+
+ Submit a Podcast
+
+
+
+
+
+ Send me Updates
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+);
+
+export default PodcastsList;
diff --git a/public/sitemap.xml b/public/sitemap.xml
index d55b5fed9..ed2be4517 100644
--- a/public/sitemap.xml
+++ b/public/sitemap.xml
@@ -21,7 +21,7 @@
https://roadmap.sh/android
monthly
- 2020-05-26T10:23:03.622Z
+ 2020-06-11T15:47:02.224Z
1.0
@@ -36,6 +36,12 @@
2020-01-29T07:49:29.706Z
1.0
+
+ https://roadmap.sh/guides/jwt-authentication
+ monthly
+ 2020-06-20T19:59:14.191Z
+ 1.0
+
https://roadmap.sh/guides/token-authentication
monthly
@@ -165,7 +171,7 @@
https://roadmap.sh/guides
monthly
- 2020-04-24T18:38:33.437Z
+ 2020-06-21T19:06:10.218Z
1.0
@@ -174,10 +180,16 @@
2020-05-25T18:33:29.749Z
1.0
+
+ https://roadmap.sh/podcasts
+ monthly
+ 2020-06-21T21:51:46.358Z
+ 1.0
+
https://roadmap.sh/roadmaps
monthly
- 2020-05-26T18:36:53.372Z
+ 2020-06-21T19:06:10.218Z
1.0
diff --git a/scripts/sitemap.js b/scripts/sitemap.js
index 9f9f90e7e..c406a823e 100644
--- a/scripts/sitemap.js
+++ b/scripts/sitemap.js
@@ -25,7 +25,7 @@ const getSlugPriority = (pageSlug) => {
}
const slugPriorities = [
- ['/roadmaps', '/guides'], // 1.0
+ ['/roadmaps', '/guides', '/podcasts'], // 1.0
['/signup'], // 0.9
['/about'], // 0.8
];