reduce bounce rate
This commit is contained in:
@@ -3,6 +3,7 @@ import BaseLayout from "../layouts/BaseLayout.astro";
|
||||
import CtaLink from "../components/CtaLink.astro";
|
||||
import ContentCard from "../components/ContentCard.astro";
|
||||
import InstagramEmbed from "../components/InstagramEmbed.astro";
|
||||
import MediaModal from "../components/MediaModal.astro";
|
||||
import { readContentCache } from "../lib/content/cache";
|
||||
import {
|
||||
newestItems,
|
||||
@@ -240,4 +241,6 @@ const newYorkTime = new Date(cache.generatedAt).toLocaleString('en-US', options)
|
||||
<CtaLink platform="podcast" placement="footer_cta" url={LINKS.podcast} label="Podcast" />
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<MediaModal />
|
||||
</BaseLayout>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
import BaseLayout from "../layouts/BaseLayout.astro";
|
||||
import ContentCard from "../components/ContentCard.astro";
|
||||
import MediaModal from "../components/MediaModal.astro";
|
||||
import { readContentCache } from "../lib/content/cache";
|
||||
import { podcastEpisodes } from "../lib/content/selectors";
|
||||
|
||||
@@ -35,4 +36,6 @@ const episodes = podcastEpisodes(cache).sort(
|
||||
)
|
||||
}
|
||||
</section>
|
||||
|
||||
<MediaModal />
|
||||
</BaseLayout>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
import BaseLayout from "../layouts/BaseLayout.astro";
|
||||
import ContentCard from "../components/ContentCard.astro";
|
||||
import MediaModal from "../components/MediaModal.astro";
|
||||
import { readContentCache } from "../lib/content/cache";
|
||||
import { youtubeVideos } from "../lib/content/selectors";
|
||||
|
||||
@@ -35,4 +36,6 @@ const videos = youtubeVideos(cache).sort(
|
||||
)
|
||||
}
|
||||
</section>
|
||||
|
||||
<MediaModal />
|
||||
</BaseLayout>
|
||||
|
||||
Reference in New Issue
Block a user