diff --git a/src/pages/videos/index.astro b/src/pages/videos/index.astro index f5daef6bf..dc5d9c5c9 100644 --- a/src/pages/videos/index.astro +++ b/src/pages/videos/index.astro @@ -4,19 +4,19 @@ import SimplePageHeader from '../../components/SimplePageHeader.astro'; import BaseLayout from '../../layouts/BaseLayout.astro'; import { getAllVideos } from '../../lib/video'; -const guides = await getAllGuides(); +const videos = await getAllVideos(); --- - +
- {guides.map((guide) => )} + {videos.map((video) => )}